diff --git a/AUTHORS b/AUTHORS index 1db15d22bb..3fd544c232 100644 --- a/AUTHORS +++ b/AUTHORS @@ -196,3 +196,4 @@ Davorin Šego Marko Jevtić Ahsan Ulhaq Mat Moore +Muzaffar Yousaf diff --git a/cms/djangoapps/contentstore/views/component.py b/cms/djangoapps/contentstore/views/component.py index ea4412e7b7..88e7e140a2 100644 --- a/cms/djangoapps/contentstore/views/component.py +++ b/cms/djangoapps/contentstore/views/component.py @@ -331,7 +331,6 @@ def get_component_templates(courselike, library=False): "Advanced component %s does not exist. It will not be added to the Studio new component menu.", category ) - pass else: log.error( "Improper format for course advanced keys! %s", diff --git a/cms/djangoapps/contentstore/views/course.py b/cms/djangoapps/contentstore/views/course.py index ff6bd819d8..1fe7df91c8 100644 --- a/cms/djangoapps/contentstore/views/course.py +++ b/cms/djangoapps/contentstore/views/course.py @@ -85,6 +85,10 @@ from util.milestones_helpers import ( MINIMUM_GROUP_ID = 100 +RANDOM_SCHEME = "random" +COHORT_SCHEME = "cohort" + + # Note: the following content group configuration strings are not # translated since they are not visible to users. CONTENT_GROUP_CONFIGURATION_DESCRIPTION = 'The groups in this configuration can be mapped to cohort groups in the LMS.' @@ -1396,19 +1400,38 @@ class GroupConfiguration(object): return UserPartition.from_json(self.configuration) @staticmethod - def get_usage_info(course, store): + def _get_usage_info(course, unit, item, usage_info, group_id, scheme_name=None): + """ + Get usage info for unit/module. + """ + unit_url = reverse_usage_url( + 'container_handler', + course.location.course_key.make_usage_key(unit.location.block_type, unit.location.name) + ) + + usage_dict = {'label': u"{} / {}".format(unit.display_name, item.display_name), 'url': unit_url} + if scheme_name == RANDOM_SCHEME: + validation_summary = item.general_validation_message() + usage_dict.update({'validation': validation_summary.to_json() if validation_summary else None}) + + usage_info[group_id].append(usage_dict) + + return usage_info + + @staticmethod + def get_content_experiment_usage_info(store, course): """ Get usage information for all Group Configurations currently referenced by a split_test instance. """ split_tests = store.get_items(course.id, qualifiers={'category': 'split_test'}) - return GroupConfiguration._get_usage_info(store, course, split_tests) + return GroupConfiguration._get_content_experiment_usage_info(store, course, split_tests) @staticmethod - def get_split_test_partitions_with_usage(course, store): + def get_split_test_partitions_with_usage(store, course): """ Returns json split_test group configurations updated with usage information. """ - usage_info = GroupConfiguration.get_usage_info(course, store) + usage_info = GroupConfiguration.get_content_experiment_usage_info(store, course) configurations = [] for partition in get_split_user_partitions(course.user_partitions): configuration = partition.to_json() @@ -1417,7 +1440,7 @@ class GroupConfiguration(object): return configurations @staticmethod - def _get_usage_info(store, course, split_tests): + def _get_content_experiment_usage_info(store, course, split_tests): """ Returns all units names, their urls and validation messages. @@ -1442,28 +1465,70 @@ class GroupConfiguration(object): if split_test.user_partition_id not in usage_info: usage_info[split_test.user_partition_id] = [] - unit_location = store.get_parent_location(split_test.location) - if not unit_location: - log.warning("Parent location of split_test module not found: %s", split_test.location) + unit = split_test.get_parent() + if not unit: + log.warning("Unable to find parent for split_test %s", split_test.location) continue - try: - unit = store.get_item(unit_location) - except ItemNotFoundError: - log.warning("Unit not found: %s", unit_location) - continue - - unit_url = reverse_usage_url( - 'container_handler', - course.location.course_key.make_usage_key(unit.location.block_type, unit.location.name) + usage_info = GroupConfiguration._get_usage_info( + course=course, + unit=unit, + item=split_test, + usage_info=usage_info, + group_id=split_test.user_partition_id, + scheme_name=RANDOM_SCHEME ) + return usage_info + + @staticmethod + def get_content_groups_usage_info(store, course): + """ + Get usage information for content groups. + """ + items = store.get_items(course.id, settings={'group_access': {'$exists': True}}) + + return GroupConfiguration._get_content_groups_usage_info(course, items) + + @staticmethod + def _get_content_groups_usage_info(course, items): + """ + Returns all units names and their urls. + + Returns: + {'group_id': + [ + { + 'label': 'Unit 1 / Problem 1', + 'url': 'url_to_unit_1' + }, + { + 'label': 'Unit 2 / Problem 2', + 'url': 'url_to_unit_2' + } + ], + } + """ + usage_info = {} + for item in items: + if hasattr(item, 'group_access') and item.group_access: + (__, group_ids), = item.group_access.items() + for group_id in group_ids: + if group_id not in usage_info: + usage_info[group_id] = [] + + unit = item.get_parent() + if not unit: + log.warning("Unable to find parent for component %s", item.location) + continue + + usage_info = GroupConfiguration._get_usage_info( + course, + unit=unit, + item=item, + usage_info=usage_info, + group_id=group_id + ) - validation_summary = split_test.general_validation_message() - usage_info[split_test.user_partition_id].append({ - 'label': u"{} / {}".format(unit.display_name, split_test.display_name), - 'url': unit_url, - 'validation': validation_summary.to_json() if validation_summary else None, - }) return usage_info @staticmethod @@ -1473,19 +1538,39 @@ class GroupConfiguration(object): Returns json of particular group configuration updated with usage information. """ - # Get all Experiments that use particular Group Configuration in course. - split_tests = store.get_items( - course.id, - category='split_test', - content={'user_partition_id': configuration.id} - ) - configuration_json = configuration.to_json() - usage_information = GroupConfiguration._get_usage_info(store, course, split_tests) - configuration_json['usage'] = usage_information.get(configuration.id, []) + configuration_json = None + # Get all Experiments that use particular Group Configuration in course. + if configuration.scheme.name == RANDOM_SCHEME: + split_tests = store.get_items( + course.id, + category='split_test', + content={'user_partition_id': configuration.id} + ) + configuration_json = configuration.to_json() + usage_information = GroupConfiguration._get_content_experiment_usage_info(store, course, split_tests) + configuration_json['usage'] = usage_information.get(configuration.id, []) + elif configuration.scheme.name == COHORT_SCHEME: + # In case if scheme is "cohort" + configuration_json = GroupConfiguration.update_content_group_usage_info(store, course, configuration) return configuration_json @staticmethod - def get_or_create_content_group_configuration(course): + def update_content_group_usage_info(store, course, configuration): + """ + Update usage information for particular Content Group Configuration. + + Returns json of particular content group configuration updated with usage information. + """ + usage_info = GroupConfiguration.get_content_groups_usage_info(store, course) + content_group_configuration = configuration.to_json() + + for group in content_group_configuration['groups']: + group['usage'] = usage_info.get(group['id'], []) + + return content_group_configuration + + @staticmethod + def get_or_create_content_group(store, course): """ Returns the first user partition from the course which uses the CohortPartitionScheme, or generates one if no such partition is @@ -1500,11 +1585,60 @@ class GroupConfiguration(object): name=CONTENT_GROUP_CONFIGURATION_NAME, description=CONTENT_GROUP_CONFIGURATION_DESCRIPTION, groups=[], - scheme_id='cohort' + scheme_id=COHORT_SCHEME ) + return content_group_configuration.to_json() + + content_group_configuration = GroupConfiguration.update_content_group_usage_info( + store, + course, + content_group_configuration + ) return content_group_configuration +def remove_content_or_experiment_group(request, store, course, configuration, group_configuration_id, group_id=None): + """ + Remove content group or experiment group configuration only if it's not in use. + """ + configuration_index = course.user_partitions.index(configuration) + if configuration.scheme.name == RANDOM_SCHEME: + usages = GroupConfiguration.get_content_experiment_usage_info(store, course) + used = int(group_configuration_id) in usages + + if used: + return JsonResponse( + {"error": _("This group configuration is in use and cannot be deleted.")}, + status=400 + ) + course.user_partitions.pop(configuration_index) + elif configuration.scheme.name == COHORT_SCHEME: + if not group_id: + return JsonResponse(status=404) + + group_id = int(group_id) + usages = GroupConfiguration.get_content_groups_usage_info(store, course) + used = group_id in usages + + if used: + return JsonResponse( + {"error": _("This content group is in use and cannot be deleted.")}, + status=400 + ) + + matching_groups = [group for group in configuration.groups if group.id == group_id] + if matching_groups: + group_index = configuration.groups.index(matching_groups[0]) + configuration.groups.pop(group_index) + else: + return JsonResponse(status=404) + + course.user_partitions[configuration_index] = configuration + + store.update_item(course, request.user.id) + return JsonResponse(status=204) + + @require_http_methods(("GET", "POST")) @login_required @ensure_csrf_cookie @@ -1527,12 +1661,12 @@ def group_configurations_list_handler(request, course_key_string): course_outline_url = reverse_course_url('course_handler', course_key) should_show_experiment_groups = are_content_experiments_enabled(course) if should_show_experiment_groups: - experiment_group_configurations = GroupConfiguration.get_split_test_partitions_with_usage(course, store) + experiment_group_configurations = GroupConfiguration.get_split_test_partitions_with_usage(store, course) else: experiment_group_configurations = None - content_group_configuration = GroupConfiguration.get_or_create_content_group_configuration( - course - ).to_json() + + content_group_configuration = GroupConfiguration.get_or_create_content_group(store, course) + return render_to_response('group_configurations.html', { 'context_course': course, 'group_configuration_url': group_configuration_url, @@ -1566,7 +1700,7 @@ def group_configurations_list_handler(request, course_key_string): @login_required @ensure_csrf_cookie @require_http_methods(("POST", "PUT", "DELETE")) -def group_configurations_detail_handler(request, course_key_string, group_configuration_id): +def group_configurations_detail_handler(request, course_key_string, group_configuration_id, group_id=None): """ JSON API endpoint for manipulating a group configuration via its internal ID. Used by the Backbone application. @@ -1600,22 +1734,19 @@ def group_configurations_detail_handler(request, course_key_string, group_config store.update_item(course, request.user.id) configuration = GroupConfiguration.update_usage_info(store, course, new_configuration) return JsonResponse(configuration, status=201) + elif request.method == "DELETE": if not configuration: return JsonResponse(status=404) - # Verify that group configuration is not already in use. - usages = GroupConfiguration.get_usage_info(course, store) - if usages.get(int(group_configuration_id)): - return JsonResponse( - {"error": _("This Group Configuration is already in use and cannot be removed.")}, - status=400 - ) - - index = course.user_partitions.index(configuration) - course.user_partitions.pop(index) - store.update_item(course, request.user.id) - return JsonResponse(status=204) + return remove_content_or_experiment_group( + request=request, + store=store, + course=course, + configuration=configuration, + group_configuration_id=group_configuration_id, + group_id=group_id + ) def are_content_experiments_enabled(course): diff --git a/cms/djangoapps/contentstore/views/tests/test_group_configurations.py b/cms/djangoapps/contentstore/views/tests/test_group_configurations.py index b8f1ca4af4..e3898f34bc 100644 --- a/cms/djangoapps/contentstore/views/tests/test_group_configurations.py +++ b/cms/djangoapps/contentstore/views/tests/test_group_configurations.py @@ -1,4 +1,5 @@ #-*- coding: utf-8 -*- + """ Group Configuration Tests. """ @@ -86,16 +87,45 @@ class HelperMethods(object): self.save_course() return (vertical, split_test) - def _add_user_partitions(self, count=1): + def _create_problem_with_content_group(self, cid, group_id, name_suffix='', special_characters=''): + """ + Create a problem + Assign content group to the problem. + """ + vertical = ItemFactory.create( + category='vertical', + parent_location=self.course.location, + display_name="Test Unit {}".format(name_suffix) + ) + + problem = ItemFactory.create( + category='problem', + parent_location=vertical.location, + display_name=u"Test Problem {}{}".format(name_suffix, special_characters) + ) + + group_access_content = {'group_access': {cid: [group_id]}} + + self.client.ajax_post( + reverse_usage_url("xblock_handler", problem.location), + data={'metadata': group_access_content} + ) + + self.save_course() + + return vertical, problem + + def _add_user_partitions(self, count=1, scheme_id="random"): """ Create user partitions for the course. """ partitions = [ UserPartition( - i, 'Name ' + str(i), 'Description ' + str(i), [Group(0, 'Group A'), Group(1, 'Group B'), Group(2, 'Group C')] + i, 'Name ' + str(i), 'Description ' + str(i), + [Group(0, 'Group A'), Group(1, 'Group B'), Group(2, 'Group C')], + scheme=None, scheme_id=scheme_id ) for i in xrange(0, count) ] - self.course.user_partitions = partitions self.save_course() @@ -285,6 +315,144 @@ class GroupConfigurationsDetailHandlerTestCase(CourseTestCase, GroupConfiguratio kwargs={'group_configuration_id': cid}, ) + def test_can_create_new_content_group_if_it_does_not_exist(self): + """ + PUT new content group. + """ + expected = { + u'id': 666, + u'name': u'Test name', + u'scheme': u'cohort', + u'description': u'Test description', + u'version': UserPartition.VERSION, + u'groups': [ + {u'id': 0, u'name': u'Group A', u'version': 1, u'usage': []}, + {u'id': 1, u'name': u'Group B', u'version': 1, u'usage': []}, + ], + } + response = self.client.put( + self._url(cid=666), + data=json.dumps(expected), + content_type="application/json", + HTTP_ACCEPT="application/json", + HTTP_X_REQUESTED_WITH="XMLHttpRequest", + ) + content = json.loads(response.content) + + self.assertEqual(content, expected) + self.reload_course() + # Verify that user_partitions in the course contains the new group configuration. + user_partitions = self.course.user_partitions + self.assertEqual(len(user_partitions), 1) + self.assertEqual(user_partitions[0].name, u'Test name') + self.assertEqual(len(user_partitions[0].groups), 2) + self.assertEqual(user_partitions[0].groups[0].name, u'Group A') + self.assertEqual(user_partitions[0].groups[1].name, u'Group B') + + def test_can_edit_content_group(self): + """ + Edit content group and check its id and modified fields. + """ + self._add_user_partitions(scheme_id='cohort') + self.save_course() + + expected = { + u'id': self.ID, + u'name': u'New Test name', + u'scheme': u'cohort', + u'description': u'New Test description', + u'version': UserPartition.VERSION, + u'groups': [ + {u'id': 0, u'name': u'New Group Name', u'version': 1, u'usage': []}, + {u'id': 2, u'name': u'Group C', u'version': 1, u'usage': []}, + ], + } + + response = self.client.put( + self._url(), + data=json.dumps(expected), + content_type="application/json", + HTTP_ACCEPT="application/json", + HTTP_X_REQUESTED_WITH="XMLHttpRequest", + ) + content = json.loads(response.content) + self.assertEqual(content, expected) + self.reload_course() + + # Verify that user_partitions is properly updated in the course. + user_partititons = self.course.user_partitions + + self.assertEqual(len(user_partititons), 1) + self.assertEqual(user_partititons[0].name, u'New Test name') + self.assertEqual(len(user_partititons[0].groups), 2) + self.assertEqual(user_partititons[0].groups[0].name, u'New Group Name') + self.assertEqual(user_partititons[0].groups[1].name, u'Group C') + + def test_can_delete_content_group(self): + """ + Delete content group and check user partitions. + """ + self._add_user_partitions(count=1, scheme_id='cohort') + self.save_course() + + details_url_with_group_id = self._url(cid=0) + '/1' + response = self.client.delete( + details_url_with_group_id, + content_type="application/json", + HTTP_ACCEPT="application/json", + HTTP_X_REQUESTED_WITH="XMLHttpRequest", + ) + self.assertEqual(response.status_code, 204) + self.reload_course() + # Verify that group and partition is properly updated in the course. + user_partititons = self.course.user_partitions + self.assertEqual(len(user_partititons), 1) + self.assertEqual(user_partititons[0].name, 'Name 0') + self.assertEqual(len(user_partititons[0].groups), 2) + self.assertEqual(user_partititons[0].groups[1].name, 'Group C') + + def test_cannot_delete_used_content_group(self): + """ + Cannot delete content group if it is in use. + """ + self._add_user_partitions(count=1, scheme_id='cohort') + self._create_problem_with_content_group(cid=0, group_id=1) + + details_url_with_group_id = self._url(cid=0) + '/1' + response = self.client.delete( + details_url_with_group_id, + content_type="application/json", + HTTP_ACCEPT="application/json", + HTTP_X_REQUESTED_WITH="XMLHttpRequest", + ) + self.assertEqual(response.status_code, 400) + content = json.loads(response.content) + self.assertTrue(content['error']) + self.reload_course() + # Verify that user_partitions and groups are still the same. + user_partititons = self.course.user_partitions + self.assertEqual(len(user_partititons), 1) + self.assertEqual(len(user_partititons[0].groups), 3) + self.assertEqual(user_partititons[0].groups[1].name, 'Group B') + + def test_cannot_delete_non_existent_content_group(self): + """ + Cannot delete content group if it is doesn't exist. + """ + self._add_user_partitions(count=1, scheme_id='cohort') + details_url_with_group_id = self._url(cid=0) + '/90' + response = self.client.delete( + details_url_with_group_id, + content_type="application/json", + HTTP_ACCEPT="application/json", + HTTP_X_REQUESTED_WITH="XMLHttpRequest", + ) + self.assertEqual(response.status_code, 404) + # Verify that user_partitions is still the same. + user_partititons = self.course.user_partitions + self.assertEqual(len(user_partititons), 1) + self.assertEqual(len(user_partititons[0].groups), 3) + def test_can_create_new_group_configuration_if_it_does_not_exist(self): """ PUT new group configuration when no configurations exist in the course. @@ -423,18 +591,107 @@ class GroupConfigurationsDetailHandlerTestCase(CourseTestCase, GroupConfiguratio # pylint: disable=no-member class GroupConfigurationsUsageInfoTestCase(CourseTestCase, HelperMethods): """ - Tests for usage information of configurations. + Tests for usage information of configurations and content groups. """ def setUp(self): super(GroupConfigurationsUsageInfoTestCase, self).setUp() + def _get_expected_content_group(self, usage_for_group): + """ + Returns the expected configuration with particular usage. + """ + return { + 'id': 0, + 'name': 'Name 0', + 'scheme': 'cohort', + 'description': 'Description 0', + 'version': UserPartition.VERSION, + 'groups': [ + {'id': 0, 'name': 'Group A', 'version': 1, 'usage': []}, + {'id': 1, 'name': 'Group B', 'version': 1, 'usage': usage_for_group}, + {'id': 2, 'name': 'Group C', 'version': 1, 'usage': []}, + ], + } + + def test_content_group_not_used(self): + """ + Test that right data structure will be created if content group is not used. + """ + self._add_user_partitions(scheme_id='cohort') + actual = GroupConfiguration.get_or_create_content_group(self.store, self.course) + expected = self._get_expected_content_group(usage_for_group=[]) + self.assertEqual(actual, expected) + + def test_can_get_correct_usage_info_when_special_characters_are_in_content(self): + """ + Test if content group json updated successfully with usage information. + """ + self._add_user_partitions(count=1, scheme_id='cohort') + vertical, __ = self._create_problem_with_content_group( + cid=0, group_id=1, name_suffix='0', special_characters=u"JOSÉ ANDRÉS" + ) + + actual = GroupConfiguration.get_or_create_content_group(self.store, self.course) + expected = self._get_expected_content_group( + usage_for_group=[ + { + 'url': u"/container/{}".format(vertical.location), + 'label': u"Test Unit 0 / Test Problem 0JOSÉ ANDRÉS" + } + ] + ) + + self.assertEqual(actual, expected) + + def test_can_get_correct_usage_info_for_content_groups(self): + """ + Test if content group json updated successfully with usage information. + """ + self._add_user_partitions(count=1, scheme_id='cohort') + vertical, __ = self._create_problem_with_content_group(cid=0, group_id=1, name_suffix='0') + + actual = GroupConfiguration.get_or_create_content_group(self.store, self.course) + + expected = self._get_expected_content_group(usage_for_group=[ + { + 'url': '/container/{}'.format(vertical.location), + 'label': 'Test Unit 0 / Test Problem 0' + } + ]) + + self.assertEqual(actual, expected) + + def test_can_use_one_content_group_in_multiple_problems(self): + """ + Test if multiple problems are present in usage info when they use same + content group. + """ + self._add_user_partitions(scheme_id='cohort') + vertical, __ = self._create_problem_with_content_group(cid=0, group_id=1, name_suffix='0') + vertical1, __ = self._create_problem_with_content_group(cid=0, group_id=1, name_suffix='1') + + actual = GroupConfiguration.get_or_create_content_group(self.store, self.course) + + expected = self._get_expected_content_group(usage_for_group=[ + { + 'url': '/container/{}'.format(vertical.location), + 'label': 'Test Unit 0 / Test Problem 0' + }, + { + 'url': '/container/{}'.format(vertical1.location), + 'label': 'Test Unit 1 / Test Problem 1' + } + ]) + + self.assertEqual(actual, expected) + def test_group_configuration_not_used(self): """ Test that right data structure will be created if group configuration is not used. """ self._add_user_partitions() - actual = GroupConfiguration.get_split_test_partitions_with_usage(self.course, self.store) + actual = GroupConfiguration.get_split_test_partitions_with_usage(self.store, self.course) expected = [{ 'id': 0, 'name': 'Name 0', @@ -458,7 +715,7 @@ class GroupConfigurationsUsageInfoTestCase(CourseTestCase, HelperMethods): vertical, __ = self._create_content_experiment(cid=0, name_suffix='0') self._create_content_experiment(name_suffix='1') - actual = GroupConfiguration.get_split_test_partitions_with_usage(self.course, self.store) + actual = GroupConfiguration.get_split_test_partitions_with_usage(self.store, self.course) expected = [{ 'id': 0, @@ -500,7 +757,7 @@ class GroupConfigurationsUsageInfoTestCase(CourseTestCase, HelperMethods): self._add_user_partitions(count=1) vertical, __ = self._create_content_experiment(cid=0, name_suffix='0', special_characters=u"JOSÉ ANDRÉS") - actual = GroupConfiguration.get_split_test_partitions_with_usage(self.course, self.store) + actual = GroupConfiguration.get_split_test_partitions_with_usage(self.store, self.course, ) expected = [{ 'id': 0, @@ -531,7 +788,7 @@ class GroupConfigurationsUsageInfoTestCase(CourseTestCase, HelperMethods): vertical, __ = self._create_content_experiment(cid=0, name_suffix='0') vertical1, __ = self._create_content_experiment(cid=0, name_suffix='1') - actual = GroupConfiguration.get_split_test_partitions_with_usage(self.course, self.store) + actual = GroupConfiguration.get_split_test_partitions_with_usage(self.store, self.course) expected = [{ 'id': 0, @@ -572,7 +829,7 @@ class GroupConfigurationsUsageInfoTestCase(CourseTestCase, HelperMethods): modulestore().update_item(orphan, ModuleStoreEnum.UserID.test) self.save_course() - actual = GroupConfiguration.get_usage_info(self.course, self.store) + actual = GroupConfiguration.get_content_experiment_usage_info(self.store, self.course) self.assertEqual(actual, {0: []}) @@ -595,7 +852,7 @@ class GroupConfigurationsValidationTestCase(CourseTestCase, HelperMethods): validation.add(mocked_message) mocked_validation_messages.return_value = validation - group_configuration = GroupConfiguration.get_split_test_partitions_with_usage(self.course, self.store)[0] + group_configuration = GroupConfiguration.get_split_test_partitions_with_usage(self.store, self.course)[0] self.assertEqual(expected_result.to_json(), group_configuration['usage'][0]['validation']) def test_error_message_present(self): diff --git a/cms/djangoapps/contentstore/views/xblock.py b/cms/djangoapps/contentstore/views/xblock.py index f45df73fd3..56a4289d56 100644 --- a/cms/djangoapps/contentstore/views/xblock.py +++ b/cms/djangoapps/contentstore/views/xblock.py @@ -25,7 +25,7 @@ def xblock_resource(request, block_type, uri): # pylint: disable=unused-argumen except IOError: log.info('Failed to load xblock resource', exc_info=True) raise Http404 - except Exception: # pylint: disable-msg=broad-except + except Exception: # pylint: disable=broad-except log.error('Failed to load xblock resource', exc_info=True) raise Http404 diff --git a/cms/envs/aws.py b/cms/envs/aws.py index 29cdb486ad..863809fc16 100644 --- a/cms/envs/aws.py +++ b/cms/envs/aws.py @@ -144,6 +144,7 @@ if 'loc_cache' not in CACHES: } SESSION_COOKIE_DOMAIN = ENV_TOKENS.get('SESSION_COOKIE_DOMAIN') +SESSION_COOKIE_HTTPONLY = ENV_TOKENS.get('SESSION_COOKIE_HTTPONLY', True) SESSION_ENGINE = ENV_TOKENS.get('SESSION_ENGINE', SESSION_ENGINE) SESSION_COOKIE_SECURE = ENV_TOKENS.get('SESSION_COOKIE_SECURE', SESSION_COOKIE_SECURE) diff --git a/cms/static/js/factories/group_configurations.js b/cms/static/js/factories/group_configurations.js index d013c4c16d..920a5137ec 100644 --- a/cms/static/js/factories/group_configurations.js +++ b/cms/static/js/factories/group_configurations.js @@ -14,6 +14,7 @@ define([ experimentGroupConfigurations.url = groupConfigurationUrl; experimentGroupConfigurations.outlineUrl = courseOutlineUrl; contentGroupConfiguration.urlRoot = groupConfigurationUrl; + contentGroupConfiguration.outlineUrl = courseOutlineUrl; new GroupConfigurationsPage({ el: $('#content'), experimentsEnabled: experimentsEnabled, diff --git a/cms/static/js/models/group.js b/cms/static/js/models/group.js index 9456c2c56a..ba0629f99c 100644 --- a/cms/static/js/models/group.js +++ b/cms/static/js/models/group.js @@ -8,8 +8,17 @@ define([ return { name: '', version: 1, - order: null - }; + order: null, + usage: [] + }; + }, + url : function() { + var parentModel = this.collection.parents[0]; + return parentModel.urlRoot + '/' + encodeURIComponent(parentModel.id) + '/' + encodeURIComponent(this.id); + }, + + reset: function() { + this.set(this._originalAttributes, { parse: true }); }, isEmpty: function() { @@ -20,7 +29,8 @@ define([ return { id: this.get('id'), name: this.get('name'), - version: this.get('version') + version: this.get('version'), + usage: this.get('usage') }; }, diff --git a/cms/static/js/spec/models/group_configuration_spec.js b/cms/static/js/spec/models/group_configuration_spec.js index 1378694b15..f047fbbc82 100644 --- a/cms/static/js/spec/models/group_configuration_spec.js +++ b/cms/static/js/spec/models/group_configuration_spec.js @@ -106,10 +106,12 @@ define([ 'groups': [ { 'version': 1, - 'name': 'Group 1' + 'name': 'Group 1', + 'usage': [] }, { 'version': 1, - 'name': 'Group 2' + 'name': 'Group 2', + 'usage': [] } ] }, @@ -125,11 +127,13 @@ define([ { 'version': 1, 'order': 0, - 'name': 'Group 1' + 'name': 'Group 1', + 'usage': [] }, { 'version': 1, 'order': 1, - 'name': 'Group 2' + 'name': 'Group 2', + 'usage': [] } ], 'usage': [] diff --git a/cms/static/js/spec/video/transcripts/file_uploader_spec.js b/cms/static/js/spec/video/transcripts/file_uploader_spec.js index 8e9d9fb68e..59d46ea6bd 100644 --- a/cms/static/js/spec/video/transcripts/file_uploader_spec.js +++ b/cms/static/js/spec/video/transcripts/file_uploader_spec.js @@ -5,7 +5,8 @@ define( "xmodule", "jquery.form", "jasmine-jquery" ], function ($, _, Utils, FileUploader) { - describe('Transcripts.FileUploader', function () { + // TODO: fix TNL-559 Intermittent failures of Transcript FileUploader JS tests + xdescribe('Transcripts.FileUploader', function () { var videoListEntryTemplate = readFixtures( 'video/transcripts/metadata-videolist-entry.underscore' ), diff --git a/cms/static/js/spec/video/transcripts/message_manager_spec.js b/cms/static/js/spec/video/transcripts/message_manager_spec.js index 5f1292ddb3..d92945706e 100644 --- a/cms/static/js/spec/video/transcripts/message_manager_spec.js +++ b/cms/static/js/spec/video/transcripts/message_manager_spec.js @@ -7,7 +7,8 @@ define( ], function ($, _, Utils, MessageManager, FileUploader, sinon) { - describe('Transcripts.MessageManager', function () { + // TODO: fix TNL-559 Intermittent failures of Transcript FileUploader JS tests + xdescribe('Transcripts.MessageManager', function () { var videoListEntryTemplate = readFixtures( 'video/transcripts/metadata-videolist-entry.underscore' ), diff --git a/cms/static/js/spec/views/group_configuration_spec.js b/cms/static/js/spec/views/group_configuration_spec.js index 7ee53ecc9b..400715a858 100644 --- a/cms/static/js/spec/views/group_configuration_spec.js +++ b/cms/static/js/spec/views/group_configuration_spec.js @@ -3,13 +3,14 @@ define([ 'js/collections/group_configuration', 'js/collections/group', 'js/views/group_configuration_details', 'js/views/group_configurations_list', 'js/views/group_configuration_editor', 'js/views/group_configuration_item', 'js/views/experiment_group_edit', 'js/views/content_group_list', + 'js/views/content_group_details', 'js/views/content_group_editor', 'js/views/content_group_item', 'js/views/feedback_notification', 'js/common_helpers/ajax_helpers', 'js/common_helpers/template_helpers', 'js/spec_helpers/view_helpers', 'jasmine-stealth' ], function( _, Course, GroupConfigurationModel, GroupModel, GroupConfigurationCollection, GroupCollection, GroupConfigurationDetailsView, GroupConfigurationsListView, GroupConfigurationEditorView, - GroupConfigurationItemView, ExperimentGroupEditView, GroupList, Notification, AjaxHelpers, TemplateHelpers, - ViewHelpers + GroupConfigurationItemView, ExperimentGroupEditView, GroupList, ContentGroupDetailsView, + ContentGroupEditorView, ContentGroupItemView, Notification, AjaxHelpers, TemplateHelpers, ViewHelpers ) { 'use strict'; var SELECTORS = { @@ -40,6 +41,134 @@ define([ note: '.wrapper-delete-button' }; + var assertTheDetailsView = function (view, text) { + expect(view.$el).toContainText(text); + expect(view.$el).toContainText('ID: 0'); + expect(view.$('.delete')).toExist(); + }; + var assertShowEmptyUsages = function (view, usageText) { + expect(view.$(SELECTORS.usageCount)).not.toExist(); + expect(view.$(SELECTORS.usageText)).toContainText(usageText); + expect(view.$(SELECTORS.usageTextAnchor)).toExist(); + expect(view.$(SELECTORS.usageUnit)).not.toExist(); + }; + var assertHideEmptyUsages = function (view) { + expect(view.$(SELECTORS.usageText)).not.toExist(); + expect(view.$(SELECTORS.usageUnit)).not.toExist(); + expect(view.$(SELECTORS.usageCount)).toContainText('Not in Use'); + }; + var assertShowNonEmptyUsages = function (view, usageText, toolTipText) { + var usageUnitAnchors = view.$(SELECTORS.usageUnitAnchor); + + expect(view.$(SELECTORS.note)).toHaveAttr( + 'data-tooltip', toolTipText + ); + expect(view.$('.delete')).toHaveClass('is-disabled'); + expect(view.$(SELECTORS.usageCount)).not.toExist(); + expect(view.$(SELECTORS.usageText)).toContainText(usageText); + expect(view.$(SELECTORS.usageUnit).length).toBe(2); + expect(usageUnitAnchors.length).toBe(2); + expect(usageUnitAnchors.eq(0)).toContainText('label1'); + expect(usageUnitAnchors.eq(0).attr('href')).toBe('url1'); + expect(usageUnitAnchors.eq(1)).toContainText('label2'); + expect(usageUnitAnchors.eq(1).attr('href')).toBe('url2'); + }; + var assertHideNonEmptyUsages = function (view) { + expect(view.$('.delete')).toHaveClass('is-disabled'); + expect(view.$(SELECTORS.usageText)).not.toExist(); + expect(view.$(SELECTORS.usageUnit)).not.toExist(); + expect(view.$(SELECTORS.usageCount)).toContainText('Used in 2 units'); + }; + var setUsageInfo = function (model) { + model.set('usage', [ + {'label': 'label1', 'url': 'url1'}, + {'label': 'label2', 'url': 'url2'} + ]); + }; + var assertHideValidationContent = function (view) { + expect(view.$(SELECTORS.usageUnitMessage)).not.toExist(); + expect(view.$(SELECTORS.usageUnitWarningIcon)).not.toExist(); + expect(view.$(SELECTORS.usageUnitErrorIcon)).not.toExist(); + }; + var assertControllerView = function (view, detailsView, editView) { + // Details view by default + expect(view.$(detailsView)).toExist(); + view.$('.action-edit .edit').click(); + expect(view.$(editView)).toExist(); + expect(view.$(detailsView)).not.toExist(); + view.$('.action-cancel').click(); + expect(view.$(detailsView)).toExist(); + expect(view.$(editView)).not.toExist(); + }; + var clickDeleteItem = function (that, promptSpy, promptText) { + that.view.$('.delete').click(); + ViewHelpers.verifyPromptShowing(promptSpy, promptText); + ViewHelpers.confirmPrompt(promptSpy); + ViewHelpers.verifyPromptHidden(promptSpy); + }; + var patchAndVerifyRequest = function (requests, url, notificationSpy) { + // Backbone.emulateHTTP is enabled in our system, so setting this + // option will fake PUT, PATCH and DELETE requests with a HTTP POST, + // setting the X-HTTP-Method-Override header with the true method. + AjaxHelpers.expectJsonRequest(requests, 'POST', url); + expect(_.last(requests).requestHeaders['X-HTTP-Method-Override']).toBe('DELETE'); + ViewHelpers.verifyNotificationShowing(notificationSpy, /Deleting/); + }; + var assertAndDeleteItemError = function (that, url, promptText) { + var requests = AjaxHelpers.requests(that), + promptSpy = ViewHelpers.createPromptSpy(), + notificationSpy = ViewHelpers.createNotificationSpy(); + + clickDeleteItem(that, promptSpy, promptText); + + patchAndVerifyRequest(requests, url, notificationSpy); + + AjaxHelpers.respondToDelete(requests); + ViewHelpers.verifyNotificationHidden(notificationSpy); + expect($(SELECTORS.itemView)).not.toExist(); + }; + var assertAndDeleteItemWithError = function (that, url, listItemView, promptText) { + var requests = AjaxHelpers.requests(that), + promptSpy = ViewHelpers.createPromptSpy(), + notificationSpy = ViewHelpers.createNotificationSpy(); + + clickDeleteItem(that, promptSpy, promptText); + patchAndVerifyRequest(requests, url, notificationSpy); + + AjaxHelpers.respondWithError(requests); + ViewHelpers.verifyNotificationShowing(notificationSpy, /Deleting/); + expect($(listItemView)).toExist(); + }; + var submitAndVerifyFormSuccess = function (view, requests, notificationSpy) { + view.$('form').submit(); + ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); + requests[0].respond(200); + ViewHelpers.verifyNotificationHidden(notificationSpy); + }; + var submitAndVerifyFormError = function (view, requests, notificationSpy) { + view.$('form').submit(); + ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); + AjaxHelpers.respondWithError(requests); + ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); + }; + var assertCannotDeleteUsed = function (that, toolTipText, warningText){ + setUsageInfo(that.model); + that.view.render(); + expect(that.view.$(SELECTORS.note)).toHaveAttr( + 'data-tooltip', toolTipText + ); + expect(that.view.$(SELECTORS.warningMessage)).toContainText(warningText); + expect(that.view.$(SELECTORS.warningIcon)).toExist(); + expect(that.view.$('.delete')).toHaveClass('is-disabled'); + }; + var assertUnusedOptions = function (that) { + that.model.set('usage', []); + that.view.render(); + expect(that.view.$(SELECTORS.warningMessage)).not.toExist(); + expect(that.view.$(SELECTORS.warningIcon)).not.toExist(); + }; + + beforeEach(function() { window.course = new Course({ id: '5', @@ -107,9 +236,7 @@ define([ }); it('should render properly', function() { - expect(this.view.$el).toContainText('Configuration'); - expect(this.view.$el).toContainText('ID: 0'); - expect(this.view.$('.delete')).toExist(); + assertTheDetailsView(this.view, 'Configuration'); }); it('should show groups appropriately', function() { @@ -142,69 +269,40 @@ define([ it('should show empty usage appropriately', function() { this.model.set('showGroups', false); this.view.$('.show-groups').click(); - - expect(this.view.$(SELECTORS.usageCount)).not.toExist(); - expect(this.view.$(SELECTORS.usageText)) - .toContainText('This Group Configuration is not in use. ' + - 'Start by adding a content experiment to any ' + - 'Unit via the'); - expect(this.view.$(SELECTORS.usageTextAnchor)).toExist(); - expect(this.view.$(SELECTORS.usageUnit)).not.toExist(); + assertShowEmptyUsages( + this.view, + 'This Group Configuration is not in use. ' + + 'Start by adding a content experiment to any Unit via the' + ); }); it('should hide empty usage appropriately', function() { this.model.set('showGroups', true); this.view.$('.hide-groups').click(); - - expect(this.view.$(SELECTORS.usageText)).not.toExist(); - expect(this.view.$(SELECTORS.usageUnit)).not.toExist(); - expect(this.view.$(SELECTORS.usageCount)) - .toContainText('Not in Use'); + assertHideEmptyUsages(this.view) }); it('should show non-empty usage appropriately', function() { - var usageUnitAnchors; - - this.model.set('usage', [ - {'label': 'label1', 'url': 'url1'}, - {'label': 'label2', 'url': 'url2'} - ]); + setUsageInfo(this.model); this.model.set('showGroups', false); this.view.$('.show-groups').click(); - usageUnitAnchors = this.view.$(SELECTORS.usageUnitAnchor); - - expect(this.view.$(SELECTORS.note)).toHaveAttr( - 'data-tooltip', 'Cannot delete when in use by an experiment' - ); - expect(this.view.$('.delete')).toHaveClass('is-disabled'); - expect(this.view.$(SELECTORS.usageCount)).not.toExist(); - expect(this.view.$(SELECTORS.usageText)) - .toContainText('This Group Configuration is used in:'); - expect(this.view.$(SELECTORS.usageUnit).length).toBe(2); - expect(usageUnitAnchors.length).toBe(2); - expect(usageUnitAnchors.eq(0)).toContainText('label1'); - expect(usageUnitAnchors.eq(0).attr('href')).toBe('url1'); - expect(usageUnitAnchors.eq(1)).toContainText('label2'); - expect(usageUnitAnchors.eq(1).attr('href')).toBe('url2'); + assertShowNonEmptyUsages( + this.view, + 'This Group Configuration is used in:', + 'Cannot delete when in use by an experiment' + ) }); it('should hide non-empty usage appropriately', function() { - this.model.set('usage', [ - {'label': 'label1', 'url': 'url1'}, - {'label': 'label2', 'url': 'url2'} - ]); + setUsageInfo(this.model); this.model.set('showGroups', true); this.view.$('.hide-groups').click(); expect(this.view.$(SELECTORS.note)).toHaveAttr( 'data-tooltip', 'Cannot delete when in use by an experiment' ); - expect(this.view.$('.delete')).toHaveClass('is-disabled'); - expect(this.view.$(SELECTORS.usageText)).not.toExist(); - expect(this.view.$(SELECTORS.usageUnit)).not.toExist(); - expect(this.view.$(SELECTORS.usageCount)) - .toContainText('Used in 2 units'); + assertHideNonEmptyUsages(this.view); }); it('should show validation warning icon and message appropriately', function() { @@ -244,16 +342,11 @@ define([ }); it('should hide validation icons and messages appropriately', function() { - this.model.set('usage', [ - {'label': 'label1', 'url': 'url1'}, - {'label': 'label2', 'url': 'url2'} - ]); + setUsageInfo(this.model); this.model.set('showGroups', true); this.view.$('.hide-groups').click(); - expect(this.view.$(SELECTORS.usageUnitMessage)).not.toExist(); - expect(this.view.$(SELECTORS.usageUnitWarningIcon)).not.toExist(); - expect(this.view.$(SELECTORS.usageUnitErrorIcon)).not.toExist(); + assertHideValidationContent(this.view); }); }); @@ -312,10 +405,7 @@ define([ inputDescription: 'New Description' }); - this.view.$('form').submit(); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); - requests[0].respond(200); - ViewHelpers.verifyNotificationHidden(notificationSpy); + submitAndVerifyFormSuccess(this.view, requests, notificationSpy); expect(this.model).toBeCorrectValuesInModel({ name: 'New Configuration', @@ -333,10 +423,7 @@ define([ notificationSpy = ViewHelpers.createNotificationSpy(); setValuesToInputs(this.view, { inputName: 'New Configuration' }); - this.view.$('form').submit(); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); - AjaxHelpers.respondWithError(requests); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Saving/); + submitAndVerifyFormError(this.view, requests, notificationSpy); }); it('does not save on cancel', function() { @@ -379,7 +466,7 @@ define([ this.view.$('form').submit(); // See error message expect(this.view.$(SELECTORS.errorMessage)).toContainText( - 'Group Configuration name is required.' + 'Group Configuration name is required' ); // No request expect(requests.length).toBe(0); @@ -461,30 +548,17 @@ define([ }); it('cannot be deleted if it is in use', function () { - this.model.set('usage', [ {'label': 'label1', 'url': 'url1'} ]); - this.view.render(); - expect(this.view.$(SELECTORS.note)).toHaveAttr( - 'data-tooltip', 'Cannot delete when in use by an experiment' - ); - expect(this.view.$('.delete')).toHaveClass('is-disabled'); - }); - - it('contains warning message if it is in use', function () { - this.model.set('usage', [ {'label': 'label1', 'url': 'url1'} ]); - this.view.render(); - expect(this.view.$(SELECTORS.warningMessage)).toContainText( + assertCannotDeleteUsed( + this, + 'Cannot delete when in use by an experiment', 'This configuration is currently used in content ' + 'experiments. If you make changes to the groups, you may ' + 'need to edit those experiments.' ); - expect(this.view.$(SELECTORS.warningIcon)).toExist(); }); it('does not contain warning message if it is not in use', function () { - this.model.set('usage', []); - this.view.render(); - expect(this.view.$(SELECTORS.warningMessage)).not.toExist(); - expect(this.view.$(SELECTORS.warningIcon)).not.toExist(); + assertUnusedOptions(this); }); }); @@ -535,7 +609,6 @@ define([ }); describe('Experiment group configurations controller view', function() { - var clickDeleteItem; beforeEach(function() { TemplateHelpers.installTemplates([ @@ -550,56 +623,21 @@ define([ appendSetFixtures(this.view.render().el); }); - clickDeleteItem = function (view, promptSpy) { - view.$('.delete').click(); - ViewHelpers.verifyPromptShowing(promptSpy, /Delete this group configuration/); - ViewHelpers.confirmPrompt(promptSpy); - ViewHelpers.verifyPromptHidden(promptSpy); - }; - it('should render properly', function() { - // Details view by default - expect(this.view.$(SELECTORS.detailsView)).toExist(); - this.view.$('.action-edit .edit').click(); - expect(this.view.$(SELECTORS.editView)).toExist(); - expect(this.view.$(SELECTORS.detailsView)).not.toExist(); - this.view.$('.action-cancel').click(); - expect(this.view.$(SELECTORS.detailsView)).toExist(); - expect(this.view.$(SELECTORS.editView)).not.toExist(); + assertControllerView(this.view, SELECTORS.detailsView, SELECTORS.editView); }); it('should destroy itself on confirmation of deleting', function () { - var requests = AjaxHelpers.requests(this), - promptSpy = ViewHelpers.createPromptSpy(), - notificationSpy = ViewHelpers.createNotificationSpy(); - - clickDeleteItem(this.view, promptSpy); - // Backbone.emulateHTTP is enabled in our system, so setting this - // option will fake PUT, PATCH and DELETE requests with a HTTP POST, - // setting the X-HTTP-Method-Override header with the true method. - AjaxHelpers.expectJsonRequest(requests, 'POST', '/group_configurations/0'); - expect(_.last(requests).requestHeaders['X-HTTP-Method-Override']).toBe('DELETE'); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Deleting/); - AjaxHelpers.respondToDelete(requests); - ViewHelpers.verifyNotificationHidden(notificationSpy); - expect($(SELECTORS.itemView)).not.toExist(); + assertAndDeleteItemError(this, '/group_configurations/0', 'Delete this group configuration?'); }); it('does not hide deleting message if failure', function() { - var requests = AjaxHelpers.requests(this), - promptSpy = ViewHelpers.createPromptSpy(), - notificationSpy = ViewHelpers.createNotificationSpy(); - - clickDeleteItem(this.view, promptSpy); - // Backbone.emulateHTTP is enabled in our system, so setting this - // option will fake PUT, PATCH and DELETE requests with a HTTP POST, - // setting the X-HTTP-Method-Override header with the true method. - AjaxHelpers.expectJsonRequest(requests, 'POST', '/group_configurations/0'); - expect(_.last(requests).requestHeaders['X-HTTP-Method-Override']).toBe('DELETE'); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Deleting/); - AjaxHelpers.respondWithError(requests); - ViewHelpers.verifyNotificationShowing(notificationSpy, /Deleting/); - expect($(SELECTORS.itemView)).toExist(); + assertAndDeleteItemWithError( + this, + '/group_configurations/0', + SELECTORS.itemView, + 'Delete this group configuration?' + ); }); }); @@ -651,9 +689,9 @@ define([ } }; - createGroups = function (groupNames) { - var groups = new GroupCollection(_.map(groupNames, function (groupName) { - return {name: groupName}; + createGroups = function (groupNamesWithId) { + var groups = new GroupCollection(_.map(groupNamesWithId, function (groupName, id) { + return {id: id, name: groupName}; })), groupConfiguration = new GroupConfigurationModel({ id: 0, @@ -661,11 +699,12 @@ define([ groups: groups }, {canBeEmpty: true}); groupConfiguration.urlRoot = '/mock_url'; + groupConfiguration.outlineUrl = '/mock_url'; return groups; }; - renderView = function(groupNames) { - var view = new GroupList({collection: createGroups(groupNames || [])}).render(); + renderView = function(groupNamesWithId) { + var view = new GroupList({collection: createGroups(groupNamesWithId || {})}).render(); appendSetFixtures(view.el); return view; }; @@ -778,7 +817,7 @@ define([ var requests = AjaxHelpers.requests(this), oldGroupName = 'Old Group Name', newGroupName = 'New Group Name', - view = renderView([oldGroupName]); + view = renderView({1: oldGroupName}); editNewGroup(view, {newName: newGroupName, save: true}); respondToSave(requests, view); verifyEditingGroup(view, false, 1); @@ -837,5 +876,189 @@ define([ view.collection.add({name: 'Editing Group', editing: true}); verifyEditingGroup(view, true); }); + + }); + + describe('Content groups details view', function() { + + beforeEach(function() { + TemplateHelpers.installTemplate('content-group-details', true); + this.model = new GroupModel({name: 'Content Group', id: 0}); + + var saveableModel = new GroupConfigurationModel({ + name: 'Content Group Configuration', + id: 0, + scheme:'cohort', + groups: new GroupCollection([this.model]), + }, {canBeEmpty: true}); + + saveableModel.urlRoot = '/mock_url'; + + this.collection = new GroupConfigurationCollection([ saveableModel ]); + this.collection.outlineUrl = '/outline'; + + this.view = new ContentGroupDetailsView({ + model: this.model + }); + appendSetFixtures(this.view.render().el); + }); + + it('should render properly', function() { + assertTheDetailsView(this.view, 'Content Group'); + }); + + it('should show empty usage appropriately', function() { + this.view.$('.show-groups').click(); + assertShowEmptyUsages(this.view, 'This content group is not in use. '); + }); + + it('should hide empty usage appropriately', function() { + this.view.$('.hide-groups').click(); + assertHideEmptyUsages(this.view) + }); + + it('should show non-empty usage appropriately', function() { + setUsageInfo(this.model); + this.view.$('.show-groups').click(); + + assertShowNonEmptyUsages( + this.view, + 'This content group is used in:', + 'Cannot delete when in use by a unit' + ) + }); + + it('should hide non-empty usage appropriately', function() { + setUsageInfo(this.model); + this.view.$('.hide-groups').click(); + + expect(this.view.$('li.action-delete')).toHaveAttr( + 'data-tooltip', 'Cannot delete when in use by a unit' + ); + assertHideNonEmptyUsages(this.view); + }); + + it('should hide validation icons and messages appropriately', function() { + setUsageInfo(this.model); + this.view.$('.hide-groups').click(); + assertHideValidationContent(this.view); + }); + }); + + describe('Content groups editor view', function() { + + beforeEach(function() { + ViewHelpers.installViewTemplates(); + TemplateHelpers.installTemplates(['content-group-editor']); + + this.model = new GroupModel({name: 'Content Group', id: 0}); + + this.saveableModel = new GroupConfigurationModel({ + name: 'Content Group Configuration', + id: 0, + scheme:'cohort', + groups: new GroupCollection([this.model]), + editing:true + }); + + this.collection = new GroupConfigurationCollection([ this.saveableModel ]); + this.collection.outlineUrl = '/outline'; + this.collection.url = '/group_configurations'; + + this.view = new ContentGroupEditorView({ + model: this.model + }); + appendSetFixtures(this.view.render().el); + }); + + it('should save properly', function() { + var requests = AjaxHelpers.requests(this), + notificationSpy = ViewHelpers.createNotificationSpy(); + + this.view.$('.action-add').click(); + this.view.$(SELECTORS.inputName).val('New Content Group'); + + submitAndVerifyFormSuccess(this.view, requests, notificationSpy); + + expect(this.model).toBeCorrectValuesInModel({ + name: 'New Content Group' + }); + expect(this.view.$el).not.toExist(); + }); + + it('does not hide saving message if failure', function() { + var requests = AjaxHelpers.requests(this), + notificationSpy = ViewHelpers.createNotificationSpy(); + this.view.$(SELECTORS.inputName).val('New Content Group') + + submitAndVerifyFormError(this.view, requests, notificationSpy) + }); + + it('does not save on cancel', function() { + expect(this.view.$('.action-add')); + this.view.$('.action-add').click(); + this.view.$(SELECTORS.inputName).val('New Content Group'); + + this.view.$('.action-cancel').click(); + expect(this.model).toBeCorrectValuesInModel({ + name: 'Content Group', + }); + // Model is still exist in the collection + expect(this.collection.indexOf(this.saveableModel)).toBeGreaterThan(-1); + expect(this.collection.length).toBe(1); + }); + + it('cannot be deleted if it is in use', function () { + assertCannotDeleteUsed( + this, + 'Cannot delete when in use by a unit', + 'This content group is used in one or more units.' + ); + }); + + it('does not contain warning message if it is not in use', function () { + assertUnusedOptions(this); + }); + }); + + describe('Content group controller view', function() { + beforeEach(function() { + TemplateHelpers.installTemplates([ + 'content-group-editor', 'content-group-details' + ], true); + + this.model = new GroupModel({name: 'Content Group', id: 0}); + + this.saveableModel = new GroupConfigurationModel({ + name: 'Content Group Configuration', + id: 0, + scheme:'cohort', + groups: new GroupCollection([this.model]) + }); + this.saveableModel.urlRoot = '/group_configurations'; + this.collection = new GroupConfigurationCollection([ this.saveableModel ]); + this.collection.url = '/group_configurations'; + this.view = new ContentGroupItemView({ + model: this.model + }); + appendSetFixtures(this.view.render().el); + }); + + it('should render properly', function() { + assertControllerView(this.view, '.content-group-details', '.content-group-edit'); + }); + + it('should destroy itself on confirmation of deleting', function () { + assertAndDeleteItemError(this, '/group_configurations/0/0', 'Delete this content group'); + }); + + it('does not hide deleting message if failure', function() { + assertAndDeleteItemWithError( + this, + '/group_configurations/0/0', + '.content-groups-list-item', + 'Delete this content group' + ); + }); }); }); diff --git a/cms/static/js/spec/views/pages/group_configurations_spec.js b/cms/static/js/spec/views/pages/group_configurations_spec.js index 3ebd6f576f..dbf0a6a76c 100644 --- a/cms/static/js/spec/views/pages/group_configurations_spec.js +++ b/cms/static/js/spec/views/pages/group_configurations_spec.js @@ -108,7 +108,7 @@ define([ }); it('should show a notification message if a content group is changed', function () { - this.view.contentGroupConfiguration.get('groups').add({name: 'Content Group'}); + this.view.contentGroupConfiguration.get('groups').add({id: 0, name: 'Content Group'}); expect(this.view.onBeforeUnload()) .toBe('You have unsaved changes. Do you really want to leave this page?'); }); diff --git a/cms/static/js/views/content_group_details.js b/cms/static/js/views/content_group_details.js index 9388db60ed..4357b04aaa 100644 --- a/cms/static/js/views/content_group_details.js +++ b/cms/static/js/views/content_group_details.js @@ -3,16 +3,26 @@ * It is expected to be backed by a Group model. */ define([ - 'js/views/baseview' -], function(BaseView) { + 'js/views/baseview', 'underscore', 'gettext', 'underscore.string' +], function(BaseView, _, gettext, str) { 'use strict'; var ContentGroupDetailsView = BaseView.extend({ tagName: 'div', - className: 'content-group-details collection', - events: { - 'click .edit': 'editGroup' + 'click .edit': 'editGroup', + 'click .show-groups': 'showContentGroupUsages', + 'click .hide-groups': 'hideContentGroupUsages' + }, + + className: function () { + var index = this.model.collection.indexOf(this.model); + + return [ + 'collection', + 'content-group-details', + 'content-group-details-' + index + ].join(' '); }, editGroup: function() { @@ -21,10 +31,66 @@ define([ initialize: function() { this.template = this.loadTemplate('content-group-details'); + this.listenTo(this.model, 'change', this.render); }, - render: function() { - this.$el.html(this.template(this.model.toJSON())); + render: function(showContentGroupUsages) { + var attrs = $.extend({}, this.model.attributes, { + usageCountMessage: this.getUsageCountTitle(), + outlineAnchorMessage: this.getOutlineAnchorMessage(), + index: this.model.collection.indexOf(this.model), + showContentGroupUsages: showContentGroupUsages || false + }); + this.$el.html(this.template(attrs)); + return this; + }, + + showContentGroupUsages: function(event) { + if (event && event.preventDefault) { event.preventDefault(); } + this.render(true); + }, + + hideContentGroupUsages: function(event) { + if (event && event.preventDefault) { event.preventDefault(); } + this.render(false); + }, + + getUsageCountTitle: function () { + var count = this.model.get('usage').length, message; + + if (count === 0) { + message = gettext('Not in Use'); + } else { + message = ngettext( + /* + Translators: 'count' is number of units that the group + configuration is used in. + */ + 'Used in %(count)s unit', 'Used in %(count)s units', + count + ); + } + + return interpolate(message, { count: count }, true); + }, + + getOutlineAnchorMessage: function () { + var message = gettext( + /* + Translators: 'outlineAnchor' is an anchor pointing to + the course outline page. + */ + 'This content group is not in use. Add a content group to any unit from the %(outlineAnchor)s.' + ), + anchor = str.sprintf( + '%(text)s', + { + url: this.model.collection.parents[0].outlineUrl, + text: gettext('Course Outline') + } + ); + + return str.sprintf(message, {outlineAnchor: anchor}); } }); diff --git a/cms/static/js/views/content_group_editor.js b/cms/static/js/views/content_group_editor.js index 7d87048f02..f249287cbe 100644 --- a/cms/static/js/views/content_group_editor.js +++ b/cms/static/js/views/content_group_editor.js @@ -23,9 +23,11 @@ function(ListItemEditorView, _) { getTemplateOptions: function() { return { + id: this.model.escape('id'), name: this.model.escape('name'), index: this.model.collection.indexOf(this.model), isNew: this.model.isNew(), + usage: this.model.get('usage'), uniqueId: _.uniqueId() }; }, diff --git a/cms/static/js/views/content_group_item.js b/cms/static/js/views/content_group_item.js index 199fe31a0f..06d3b22c87 100644 --- a/cms/static/js/views/content_group_item.js +++ b/cms/static/js/views/content_group_item.js @@ -5,15 +5,30 @@ * It is expected to be backed by a Group model. */ define([ - 'js/views/list_item', 'js/views/content_group_editor', 'js/views/content_group_details' -], function(ListItemView, ContentGroupEditorView, ContentGroupDetailsView) { + 'js/views/list_item', 'js/views/content_group_editor', 'js/views/content_group_details', 'gettext', "js/views/utils/view_utils" +], function(ListItemView, ContentGroupEditorView, ContentGroupDetailsView, gettext) { 'use strict'; var ContentGroupItemView = ListItemView.extend({ + events: { + 'click .delete': 'deleteItem' + }, + tagName: 'section', baseClassName: 'content-group', + canDelete: true, + + itemDisplayName: gettext('content group'), + + attributes: function () { + return { + 'id': this.model.get('id'), + 'tabindex': -1 + }; + }, + createEditView: function() { return new ContentGroupEditorView({model: this.model}); }, diff --git a/cms/static/sass/views/_group-configuration.scss b/cms/static/sass/views/_group-configuration.scss index ac6168423f..897860a7c6 100644 --- a/cms/static/sass/views/_group-configuration.scss +++ b/cms/static/sass/views/_group-configuration.scss @@ -100,6 +100,28 @@ color: $gray-l1; margin-left: $baseline; + &.group-configuration-info-inline { + display: table; + width: 70%; + margin: ($baseline/4) 0 ($baseline/2) $baseline; + + li { + @include box-sizing(border-box); + display: table-cell; + margin-right: 1%; + + &.group-configuration-usage-count { + font-style: italic; + } + } + } + + &.group-configuration-info-block { + li { + padding: ($baseline/4) 0; + } + } + &.collection-info-inline { display: table; width: 70%; @@ -355,12 +377,31 @@ } } - .field.add-collection-name label { - @extend %t-title5; - display: inline-block; - vertical-align: bottom; + .field.add-collection-name { + + label { + width: 50%; + @extend %t-title5; + display: inline-block; + vertical-align: bottom; + } + + .group-configuration-id { + display: inline-block; + width: 45%; + text-align: right; + vertical-align: top; + color: $gray-l1; + + .group-configuration-value { + @extend %t-strong; + white-space: nowrap; + margin-left: ($baseline*0.5); + } + } } + .actions { box-shadow: inset 0 1px 2px $shadow; border-top: 1px solid $gray-l1; @@ -443,7 +484,7 @@ .collection-header{ .title { - margin-bottom: 0; + margin-bottom: 0; } } } @@ -457,28 +498,6 @@ color: $gray-l1; margin-left: $baseline; - &.group-configuration-info-inline { - display: table; - width: 70%; - margin: ($baseline/4) 0 ($baseline/2) $baseline; - - li { - @include box-sizing(border-box); - display: table-cell; - margin-right: 1%; - - &.group-configuration-usage-count { - font-style: italic; - } - } - } - - &.group-configuration-info-block { - li { - padding: ($baseline/4) 0; - } - } - .group-configuration-label { text-transform: uppercase; } @@ -526,27 +545,12 @@ .group-configuration-edit { .add-collection-name label { - width: 50%; padding-right: 5%; overflow: hidden; text-overflow: ellipsis; vertical-align: bottom; } - .group-configuration-id { - display: inline-block; - width: 45%; - text-align: right; - vertical-align: top; - color: $gray-l1; - - .group-configuration-value { - @extend %t-strong; - white-space: nowrap; - margin-left: ($baseline*0.5); - } - } - .field-group { @include clearfix(); margin: 0 0 ($baseline/2) 0; diff --git a/cms/templates/group_configurations.html b/cms/templates/group_configurations.html index f9a6d0ce08..2a9064010f 100644 --- a/cms/templates/group_configurations.html +++ b/cms/templates/group_configurations.html @@ -67,7 +67,8 @@

${_("Content Groups")}

${_("Use content groups to give groups of students access to a specific set of course content. In addition to course content that is intended for all students, each content group sees content that you specifically designate as visible to it. By associating a content group with one or more cohorts, you can customize the content that a particular cohort or cohorts sees in your course.")}

-

${_("Click {em_start}New content group{em_end} to add a new content group. To edit the name of a content group, hover over its box and click {em_start}Edit{em_end}. Content groups cannot be deleted.").format(em_start="", em_end="")}

+

${_("Click {em_start}New content group{em_end} to add a new content group. To edit the name of a content group, hover over its box and click {em_start}Edit{em_end}.").format(em_start="", em_end="")}

+

${_("You can delete a content group only if it is not in use by a unit. To delete a content group, hover over its box and click the delete icon.")}

${_("Learn More")}

diff --git a/cms/templates/js/content-group-details.underscore b/cms/templates/js/content-group-details.underscore index 9c1999fb25..b300f4b862 100644 --- a/cms/templates/js/content-group-details.underscore +++ b/cms/templates/js/content-group-details.underscore @@ -1,13 +1,58 @@ -
+

- <%- name %> + + + <%= name %> +

-
    +
      + <% if (!_.isUndefined(id)) { %> +
    1. <%= gettext('ID') %>: <%= id %>
    2. + <% } %> + <% if (!showContentGroupUsages) { %> +
    3. + <%= usageCountMessage %> +
    4. + <% } %> +
    + +
    • + <% if (_.isEmpty(usage)) { %> +
    • + +
    • + <% } else { %> +
    • + +
    • + <% } %>
+ +<% if (showContentGroupUsages) { %> +
+ <% if (!_.isEmpty(usage)) { %> +

<%= gettext('This content group is used in:') %>

+
    + <% _.each(usage, function(unit) { %> +
  1. +

    ><%= unit.label %>

    +
  2. + <% }) %> +
+ <% } else { %> +

+ <%= outlineAnchorMessage %> +

+ <% } %> +
+<% } %> diff --git a/cms/templates/js/content-group-editor.underscore b/cms/templates/js/content-group-editor.underscore index b4d3489a5d..0861e7b6ee 100644 --- a/cms/templates/js/content-group-editor.underscore +++ b/cms/templates/js/content-group-editor.underscore @@ -7,13 +7,40 @@
- + <% + if (!_.isUndefined(id) && !_.isEmpty(id)) { + %> + <%= gettext('Content Group ID') %> + <%= id %> + <% + } + %> ">
+ <% if (!_.isEmpty(usage)) { %> +
+ +

+ <%= gettext('This content group is used in one or more units.') %> +

+
+ <% } %>
+ + <% if (!isNew) { %> + <% if (_.isEmpty(usage)) { %> + "> + <%= gettext("Delete") %> + + <% } else { %> + + <%= gettext("Delete") %> + + <% } %> + <% } %>
diff --git a/cms/urls.py b/cms/urls.py index 4ca692f109..89ef86040c 100644 --- a/cms/urls.py +++ b/cms/urls.py @@ -108,8 +108,8 @@ urlpatterns += patterns( url(r'^videos/{}$'.format(settings.COURSE_KEY_PATTERN), 'videos_handler'), url(r'^video_encodings_download/{}$'.format(settings.COURSE_KEY_PATTERN), 'video_encodings_download'), url(r'^group_configurations/{}$'.format(settings.COURSE_KEY_PATTERN), 'group_configurations_list_handler'), - url(r'^group_configurations/{}/(?P\d+)/?$'.format(settings.COURSE_KEY_PATTERN), - 'group_configurations_detail_handler'), + url(r'^group_configurations/{}/(?P\d+)(/)?(?P\d+)?$'.format( + settings.COURSE_KEY_PATTERN), 'group_configurations_detail_handler'), url(r'^api/val/v0/', include('edxval.urls')), ) diff --git a/common/__init__.py b/common/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/common/djangoapps/cors_csrf/__init__.py b/common/djangoapps/cors_csrf/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/common/djangoapps/cors_csrf/middleware.py b/common/djangoapps/cors_csrf/middleware.py new file mode 100644 index 0000000000..c4541d5549 --- /dev/null +++ b/common/djangoapps/cors_csrf/middleware.py @@ -0,0 +1,67 @@ +""" +Middleware for handling CSRF checks with CORS requests + +When processing HTTPS requests, the default CSRF middleware checks that the referer +domain and protocol is the same as the request's domain and protocol. This is meant +to avoid a type of attack for sites which serve their content with both HTTP and HTTPS, +with a man in the middle on the HTTP requests. + +https://github.com/django/django/blob/b91c385e324f1cb94d20e2ad146372c259d51d3b/django/middleware/csrf.py#L117 + +This doesn't work well with CORS requests, which aren't vulnerable to this attack when +the server from which the request is coming uses HTTPS too, as it prevents the man in the +middle attack vector. + +We thus do the CSRF check of requests coming from an authorized CORS host separately +in this middleware, applying the same protections as the default CSRF middleware, but +without the referrer check, when both the request and the referer use HTTPS. +""" + +import logging +import urlparse + +from django.conf import settings +from django.middleware.csrf import CsrfViewMiddleware + +log = logging.getLogger(__name__) + + +class CorsCSRFMiddleware(CsrfViewMiddleware): + """ + Middleware for handling CSRF checks with CORS requests + """ + def is_enabled(self, request): + """ + Override the `is_enabled()` method to allow cross-domain HTTPS requests + """ + if not settings.FEATURES.get('ENABLE_CORS_HEADERS'): + return False + + referer = request.META.get('HTTP_REFERER') + if not referer: + return False + referer_parts = urlparse.urlparse(referer) + + if referer_parts.hostname not in getattr(settings, 'CORS_ORIGIN_WHITELIST', []): + return False + if not request.is_secure() or referer_parts.scheme != 'https': + return False + + return True + + def process_view(self, request, callback, callback_args, callback_kwargs): + if not self.is_enabled(request): + return + + is_secure_default = request.is_secure + + def is_secure_patched(): + """ + Avoid triggering the additional CSRF middleware checks on the referrer + """ + return False + request.is_secure = is_secure_patched + + res = super(CorsCSRFMiddleware, self).process_view(request, callback, callback_args, callback_kwargs) + request.is_secure = is_secure_default + return res diff --git a/common/djangoapps/cors_csrf/models.py b/common/djangoapps/cors_csrf/models.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/common/djangoapps/cors_csrf/tests.py b/common/djangoapps/cors_csrf/tests.py new file mode 100644 index 0000000000..7e6c4f4a36 --- /dev/null +++ b/common/djangoapps/cors_csrf/tests.py @@ -0,0 +1,101 @@ +""" +Tests for the CORS CSRF middleware +""" + +from mock import patch, Mock + +from django.test import TestCase +from django.test.utils import override_settings +from django.middleware.csrf import CsrfViewMiddleware + +from cors_csrf.middleware import CorsCSRFMiddleware + + +SENTINEL = object() + + +class TestCorsMiddlewareProcessRequest(TestCase): + """ + Test processing a request through the middleware + """ + def get_request(self, is_secure, http_referer): + """ + Build a test request + """ + request = Mock() + request.META = {'HTTP_REFERER': http_referer} + request.is_secure = lambda: is_secure + return request + + def setUp(self): + self.middleware = CorsCSRFMiddleware() + + def check_not_enabled(self, request): + """ + Check that the middleware does NOT process the provided request + """ + with patch.object(CsrfViewMiddleware, 'process_view') as mock_method: + res = self.middleware.process_view(request, None, None, None) + + self.assertIsNone(res) + self.assertFalse(mock_method.called) + + def check_enabled(self, request): + """ + Check that the middleware does process the provided request + """ + def cb_check_req_is_secure_false(request, callback, args, kwargs): + """ + Check that the request doesn't pass (yet) the `is_secure()` test + """ + self.assertFalse(request.is_secure()) + return SENTINEL + + with patch.object(CsrfViewMiddleware, 'process_view') as mock_method: + mock_method.side_effect = cb_check_req_is_secure_false + res = self.middleware.process_view(request, None, None, None) + + self.assertIs(res, SENTINEL) + self.assertTrue(request.is_secure()) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': True}, + CORS_ORIGIN_WHITELIST=['foo.com']) + def test_enabled(self): + request = self.get_request(is_secure=True, + http_referer='https://foo.com/bar') + self.check_enabled(request) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': False}, + CORS_ORIGIN_WHITELIST=['foo.com']) + def test_disabled_no_cors_headers(self): + request = self.get_request(is_secure=True, + http_referer='https://foo.com/bar') + self.check_not_enabled(request) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': True}, + CORS_ORIGIN_WHITELIST=['bar.com']) + def test_disabled_wrong_cors_domain(self): + request = self.get_request(is_secure=True, + http_referer='https://foo.com/bar') + self.check_not_enabled(request) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': True}, + CORS_ORIGIN_WHITELIST=['foo.com']) + def test_disabled_wrong_cors_domain_reversed(self): + request = self.get_request(is_secure=True, + http_referer='https://bar.com/bar') + self.check_not_enabled(request) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': True}, + CORS_ORIGIN_WHITELIST=['foo.com']) + def test_disabled_http_request(self): + request = self.get_request(is_secure=False, + http_referer='https://foo.com/bar') + self.check_not_enabled(request) + + @override_settings(FEATURES={'ENABLE_CORS_HEADERS': True}, + CORS_ORIGIN_WHITELIST=['foo.com']) + def test_disabled_http_referer(self): + request = self.get_request(is_secure=True, + http_referer='http://foo.com/bar') + self.check_not_enabled(request) diff --git a/common/djangoapps/embargo/models.py b/common/djangoapps/embargo/models.py index c254c45194..447c023fd6 100644 --- a/common/djangoapps/embargo/models.py +++ b/common/djangoapps/embargo/models.py @@ -156,7 +156,7 @@ class RestrictedCourse(models.Model): Cache all restricted courses and returns the list of course_keys that are restricted """ restricted_courses = cache.get(cls.COURSE_LIST_CACHE_KEY) - if not restricted_courses: + if restricted_courses is None: restricted_courses = list(RestrictedCourse.objects.values_list('course_key', flat=True)) cache.set(cls.COURSE_LIST_CACHE_KEY, restricted_courses) return restricted_courses @@ -413,7 +413,7 @@ class CountryAccessRule(models.Model): """ cache_key = cls.CACHE_KEY.format(course_key=course_id) allowed_countries = cache.get(cache_key) - if not allowed_countries: + if allowed_countries is None: allowed_countries = cls._get_country_access_list(course_id) cache.set(cache_key, allowed_countries) diff --git a/common/djangoapps/embargo/tests/test_api.py b/common/djangoapps/embargo/tests/test_api.py index f0df5d3f10..299e59defe 100644 --- a/common/djangoapps/embargo/tests/test_api.py +++ b/common/djangoapps/embargo/tests/test_api.py @@ -166,6 +166,16 @@ class EmbargoCheckAccessApiTests(ModuleStoreTestCase): with self.assertNumQueries(0): embargo_api.check_course_access(self.course.id, user=self.user, ip_address='0.0.0.0') + def test_caching_no_restricted_courses(self): + RestrictedCourse.objects.all().delete() + cache.clear() + + with self.assertNumQueries(1): + embargo_api.check_course_access(self.course.id, user=self.user, ip_address='0.0.0.0') + + with self.assertNumQueries(0): + embargo_api.check_course_access(self.course.id, user=self.user, ip_address='0.0.0.0') + @ddt.ddt @override_settings(MODULESTORE=MODULESTORE_CONFIG) diff --git a/common/djangoapps/enrollment/data.py b/common/djangoapps/enrollment/data.py index 3efbb70e46..3315570883 100644 --- a/common/djangoapps/enrollment/data.py +++ b/common/djangoapps/enrollment/data.py @@ -97,7 +97,8 @@ def create_course_enrollment(username, course_id, mode, is_active): except CourseFullError as err: raise CourseEnrollmentFullError(err.message) except AlreadyEnrolledError as err: - raise CourseEnrollmentExistsError(err.message) + enrollment = get_course_enrollment(username, course_id) + raise CourseEnrollmentExistsError(err.message, enrollment) def update_course_enrollment(username, course_id, mode=None, is_active=None): diff --git a/common/djangoapps/enrollment/errors.py b/common/djangoapps/enrollment/errors.py index 9ea5c41542..c35e02d280 100644 --- a/common/djangoapps/enrollment/errors.py +++ b/common/djangoapps/enrollment/errors.py @@ -30,7 +30,11 @@ class CourseEnrollmentFullError(CourseEnrollmentError): class CourseEnrollmentExistsError(CourseEnrollmentError): - pass + enrollment = None + + def __init__(self, message, enrollment): + super(CourseEnrollmentExistsError, self).__init__(message) + self.enrollment = enrollment class CourseModeNotFoundError(CourseEnrollmentError): diff --git a/common/djangoapps/enrollment/tests/test_views.py b/common/djangoapps/enrollment/tests/test_views.py index f353dd8ff0..4d0fd9ee22 100644 --- a/common/djangoapps/enrollment/tests/test_views.py +++ b/common/djangoapps/enrollment/tests/test_views.py @@ -147,7 +147,7 @@ class EnrollmentTest(ModuleStoreTestCase, APITestCase): self.client.logout() # Try to enroll, this should fail. - self._create_enrollment(expected_status=status.HTTP_403_FORBIDDEN) + self._create_enrollment(expected_status=status.HTTP_401_UNAUTHORIZED) def test_user_not_activated(self): # Log out the default user, Bob. @@ -255,6 +255,11 @@ class EnrollmentTest(ModuleStoreTestCase, APITestCase): self.assertTrue(data['is_active']) return resp + def test_enrollment_already_enrolled(self): + response = self._create_enrollment() + repeat_response = self._create_enrollment() + self.assertEqual(json.loads(response.content), json.loads(repeat_response.content)) + def test_get_enrollment_with_invalid_key(self): resp = self.client.post( reverse('courseenrollments'), diff --git a/common/djangoapps/enrollment/views.py b/common/djangoapps/enrollment/views.py index a1f655c5b8..37359a6145 100644 --- a/common/djangoapps/enrollment/views.py +++ b/common/djangoapps/enrollment/views.py @@ -9,7 +9,6 @@ from opaque_keys import InvalidKeyError from opaque_keys.edx.locator import CourseLocator from openedx.core.djangoapps.user_api import api as user_api from rest_framework import status -from rest_framework.authentication import OAuth2Authentication from rest_framework import permissions from rest_framework.response import Response from rest_framework.throttling import UserRateThrottle @@ -17,9 +16,11 @@ from rest_framework.views import APIView from opaque_keys.edx.keys import CourseKey from opaque_keys import InvalidKeyError from enrollment import api -from enrollment.errors import CourseNotFoundError, CourseEnrollmentError, CourseModeNotFoundError +from enrollment.errors import ( + CourseNotFoundError, CourseEnrollmentError, CourseModeNotFoundError, CourseEnrollmentExistsError +) from embargo import api as embargo_api -from util.authentication import SessionAuthenticationAllowInactiveUser +from util.authentication import SessionAuthenticationAllowInactiveUser, OAuth2AuthenticationAllowInactiveUser from util.disable_rate_limit import can_disable_rate_limit @@ -71,7 +72,7 @@ class EnrollmentView(APIView): * user: The ID of the user. """ - authentication_classes = OAuth2Authentication, SessionAuthenticationAllowInactiveUser + authentication_classes = OAuth2AuthenticationAllowInactiveUser, SessionAuthenticationAllowInactiveUser permission_classes = permissions.IsAuthenticated, throttle_classes = EnrollmentUserThrottle, @@ -243,7 +244,7 @@ class EnrollmentListView(APIView): * user: The ID of the user. """ - authentication_classes = OAuth2Authentication, SessionAuthenticationAllowInactiveUser + authentication_classes = OAuth2AuthenticationAllowInactiveUser, SessionAuthenticationAllowInactiveUser permission_classes = permissions.IsAuthenticated, throttle_classes = EnrollmentUserThrottle, @@ -339,6 +340,8 @@ class EnrollmentListView(APIView): "message": u"No course '{course_id}' found for enrollment".format(course_id=course_id) } ) + except CourseEnrollmentExistsError as error: + return Response(data=error.enrollment) except CourseEnrollmentError: return Response( status=status.HTTP_400_BAD_REQUEST, diff --git a/common/djangoapps/student/admin.py b/common/djangoapps/student/admin.py index bea29aab9d..d85621287e 100644 --- a/common/djangoapps/student/admin.py +++ b/common/djangoapps/student/admin.py @@ -29,6 +29,17 @@ class CourseAccessRoleAdmin(admin.ModelAdmin): 'id', 'user', 'org', 'course_id', 'role' ) + +class LinkedInAddToProfileConfigurationAdmin(admin.ModelAdmin): + """Admin interface for the LinkedIn Add to Profile configuration. """ + + class Meta: + model = LinkedInAddToProfileConfiguration + + # Exclude deprecated fields + exclude = ('dashboard_tracking_code',) + + admin.site.register(UserProfile) admin.site.register(UserTestGroup) @@ -45,4 +56,4 @@ admin.site.register(CourseAccessRole, CourseAccessRoleAdmin) admin.site.register(DashboardConfiguration, ConfigurationModelAdmin) -admin.site.register(LinkedInAddToProfileConfiguration) +admin.site.register(LinkedInAddToProfileConfiguration, LinkedInAddToProfileConfigurationAdmin) diff --git a/common/djangoapps/student/forms.py b/common/djangoapps/student/forms.py index 48c956669b..7afbb383d6 100644 --- a/common/djangoapps/student/forms.py +++ b/common/djangoapps/student/forms.py @@ -2,16 +2,23 @@ Utility functions for validating forms """ from django import forms +from django.core.exceptions import ValidationError from django.contrib.auth.models import User from django.contrib.auth.forms import PasswordResetForm from django.contrib.auth.hashers import UNUSABLE_PASSWORD from django.contrib.auth.tokens import default_token_generator from django.utils.http import int_to_base36 +from django.utils.translation import ugettext_lazy as _ from django.template import loader from django.conf import settings from microsite_configuration import microsite +from util.password_policy_validators import ( + validate_password_length, + validate_password_complexity, + validate_password_dictionary, +) class PasswordResetFormNoActive(PasswordResetForm): @@ -70,3 +77,160 @@ class PasswordResetFormNoActive(PasswordResetForm): subject = subject.replace('\n', '') email = loader.render_to_string(email_template_name, context) send_mail(subject, email, from_email, [user.email]) + + +class TrueField(forms.BooleanField): + """ + A boolean field that only accepts "true" (case-insensitive) as true + """ + def to_python(self, value): + # CheckboxInput converts string to bool by case-insensitive match to "true" or "false" + if value is True: + return value + else: + return None + + +_USERNAME_TOO_SHORT_MSG = _("Username must be minimum of two characters long") +_EMAIL_INVALID_MSG = _("A properly formatted e-mail is required") +_PASSWORD_INVALID_MSG = _("A valid password is required") +_NAME_TOO_SHORT_MSG = _("Your legal name must be a minimum of two characters long") + + +class AccountCreationForm(forms.Form): + """ + A form to for account creation data. It is currently only used for + validation, not rendering. + """ + # TODO: Resolve repetition + username = forms.SlugField( + min_length=2, + max_length=30, + error_messages={ + "required": _USERNAME_TOO_SHORT_MSG, + "invalid": _("Username should only consist of A-Z and 0-9, with no spaces."), + "min_length": _USERNAME_TOO_SHORT_MSG, + "max_length": _("Username cannot be more than %(limit_value)s characters long"), + } + ) + email = forms.EmailField( + max_length=75, # Limit per RFCs is 254, but User's email field in django 1.4 only takes 75 + error_messages={ + "required": _EMAIL_INVALID_MSG, + "invalid": _EMAIL_INVALID_MSG, + "max_length": _("Email cannot be more than %(limit_value)s characters long"), + } + ) + password = forms.CharField( + min_length=2, + error_messages={ + "required": _PASSWORD_INVALID_MSG, + "min_length": _PASSWORD_INVALID_MSG, + } + ) + name = forms.CharField( + min_length=2, + error_messages={ + "required": _NAME_TOO_SHORT_MSG, + "min_length": _NAME_TOO_SHORT_MSG, + } + ) + + def __init__( + self, + data=None, + extra_fields=None, + extended_profile_fields=None, + enforce_username_neq_password=False, + enforce_password_policy=False, + tos_required=True + ): + super(AccountCreationForm, self).__init__(data) + + extra_fields = extra_fields or {} + self.extended_profile_fields = extended_profile_fields or {} + self.enforce_username_neq_password = enforce_username_neq_password + self.enforce_password_policy = enforce_password_policy + if tos_required: + self.fields["terms_of_service"] = TrueField( + error_messages={"required": _("You must accept the terms of service.")} + ) + + # TODO: These messages don't say anything about minimum length + error_message_dict = { + "level_of_education": _("A level of education is required"), + "gender": _("Your gender is required"), + "year_of_birth": _("Your year of birth is required"), + "mailing_address": _("Your mailing address is required"), + "goals": _("A description of your goals is required"), + "city": _("A city is required"), + "country": _("A country is required") + } + for field_name, field_value in extra_fields.items(): + if field_name not in self.fields: + if field_name == "honor_code": + if field_value == "required": + self.fields[field_name] = TrueField( + error_messages={ + "required": _("To enroll, you must follow the honor code.") + } + ) + else: + required = field_value == "required" + min_length = 1 if field_name in ("gender", "level_of_education") else 2 + error_message = error_message_dict.get( + field_name, + _("You are missing one or more required fields") + ) + self.fields[field_name] = forms.CharField( + required=required, + min_length=min_length, + error_messages={ + "required": error_message, + "min_length": error_message, + } + ) + + for field in self.extended_profile_fields: + if field not in self.fields: + self.fields[field] = forms.CharField(required=False) + + def clean_password(self): + """Enforce password policies (if applicable)""" + password = self.cleaned_data["password"] + if ( + self.enforce_username_neq_password and + "username" in self.cleaned_data and + self.cleaned_data["username"] == password + ): + raise ValidationError(_("Username and password fields cannot match")) + if self.enforce_password_policy: + try: + validate_password_length(password) + validate_password_complexity(password) + validate_password_dictionary(password) + except ValidationError, err: + raise ValidationError(_("Password: ") + "; ".join(err.messages)) + return password + + def clean_year_of_birth(self): + """ + Parse year_of_birth to an integer, but just use None instead of raising + an error if it is malformed + """ + try: + year_str = self.cleaned_data["year_of_birth"] + return int(year_str) if year_str is not None else None + except ValueError: + return None + + @property + def cleaned_extended_profile(self): + """ + Return a dictionary containing the extended_profile_fields and values + """ + return { + key: value + for key, value in self.cleaned_data.items() + if key in self.extended_profile_fields and value is not None + } diff --git a/common/djangoapps/student/helpers.py b/common/djangoapps/student/helpers.py index 38308e6721..6e0261aa0b 100644 --- a/common/djangoapps/student/helpers.py +++ b/common/djangoapps/student/helpers.py @@ -153,7 +153,21 @@ def check_verify_status_by_course(user, course_enrollment_pairs, all_course_mode else: status = VERIFY_STATUS_NEED_TO_VERIFY else: - status = VERIFY_STATUS_MISSED_DEADLINE + # If a user currently has an active or pending verification, + # then they may have submitted an additional attempt after + # the verification deadline passed. This can occur, + # for example, when the support team asks a student + # to reverify after the deadline so they can receive + # a verified certificate. + # In this case, we still want to show them as "verified" + # on the dashboard. + if has_active_or_pending: + status = VERIFY_STATUS_APPROVED + + # Otherwise, the student missed the deadline, so show + # them as "honor" (the kind of certificate they will receive). + else: + status = VERIFY_STATUS_MISSED_DEADLINE # Set the status for the course only if we're displaying some kind of message # Otherwise, leave the course out of the dictionary. diff --git a/common/djangoapps/student/management/commands/create_random_users.py b/common/djangoapps/student/management/commands/create_random_users.py index 088d4484ab..ba44c58020 100644 --- a/common/djangoapps/student/management/commands/create_random_users.py +++ b/common/djangoapps/student/management/commands/create_random_users.py @@ -8,26 +8,30 @@ from student.models import CourseEnrollment from opaque_keys import InvalidKeyError from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.locations import SlashSeparatedCourseKey +from student.forms import AccountCreationForm from student.views import _do_create_account -def get_random_post_override(): +def make_random_form(): """ Generate unique user data for dummy users. """ identification = uuid.uuid4().hex[:8] - return { - 'username': 'user_{id}'.format(id=identification), - 'email': 'email_{id}@example.com'.format(id=identification), - 'password': '12345', - 'name': 'User {id}'.format(id=identification), - } + return AccountCreationForm( + data={ + 'username': 'user_{id}'.format(id=identification), + 'email': 'email_{id}@example.com'.format(id=identification), + 'password': '12345', + 'name': 'User {id}'.format(id=identification), + }, + tos_required=False + ) def create(num, course_key): """Create num users, enrolling them in course_key if it's not None""" for idx in range(num): - (user, user_profile, __) = _do_create_account(get_random_post_override()) + (user, _, _) = _do_create_account(make_random_form()) if course_key is not None: CourseEnrollment.enroll(user, course_key) diff --git a/common/djangoapps/student/management/commands/create_user.py b/common/djangoapps/student/management/commands/create_user.py index 2da0a6e4fa..4da9519baf 100644 --- a/common/djangoapps/student/management/commands/create_user.py +++ b/common/djangoapps/student/management/commands/create_user.py @@ -8,6 +8,7 @@ from django.utils import translation from opaque_keys import InvalidKeyError from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.locations import SlashSeparatedCourseKey +from student.forms import AccountCreationForm from student.models import CourseEnrollment, Registration, create_comments_service_user from student.views import _do_create_account, AccountValidationError from track.management.tracked_command import TrackedCommand @@ -80,21 +81,22 @@ class Command(TrackedCommand): except InvalidKeyError: course = SlashSeparatedCourseKey.from_deprecated_string(options['course']) - post_data = { - 'username': username, - 'email': options['email'], - 'password': options['password'], - 'name': name, - 'honor_code': u'true', - 'terms_of_service': u'true', - } + form = AccountCreationForm( + data={ + 'username': username, + 'email': options['email'], + 'password': options['password'], + 'name': name, + }, + tos_required=False + ) # django.utils.translation.get_language() will be used to set the new # user's preferred language. This line ensures that the result will # match this installation's default locale. Otherwise, inside a # management command, it will always return "en-us". translation.activate(settings.LANGUAGE_CODE) try: - user, profile, reg = _do_create_account(post_data) + user, _, reg = _do_create_account(form) if options['staff']: user.is_staff = True user.save() diff --git a/common/djangoapps/student/migrations/0045_add_trk_partner_to_linkedin_config.py b/common/djangoapps/student/migrations/0045_add_trk_partner_to_linkedin_config.py new file mode 100644 index 0000000000..87128512d4 --- /dev/null +++ b/common/djangoapps/student/migrations/0045_add_trk_partner_to_linkedin_config.py @@ -0,0 +1,184 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + # Adding field 'LinkedInAddToProfileConfiguration.trk_partner_name' + db.add_column('student_linkedinaddtoprofileconfiguration', 'trk_partner_name', + self.gf('django.db.models.fields.CharField')(default='', max_length=10, blank=True), + keep_default=False) + + + def backwards(self, orm): + # Deleting field 'LinkedInAddToProfileConfiguration.trk_partner_name' + db.delete_column('student_linkedinaddtoprofileconfiguration', 'trk_partner_name') + + + models = { + 'auth.group': { + 'Meta': {'object_name': 'Group'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), + 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) + }, + 'auth.permission': { + 'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'}, + 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) + }, + 'auth.user': { + 'Meta': {'object_name': 'User'}, + 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), + 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), + 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), + 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), + 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) + }, + 'contenttypes.contenttype': { + 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, + 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) + }, + 'student.anonymoususerid': { + 'Meta': {'object_name': 'AnonymousUserId'}, + 'anonymous_user_id': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32'}), + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.courseaccessrole': { + 'Meta': {'unique_together': "(('user', 'org', 'course_id', 'role'),)", 'object_name': 'CourseAccessRole'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'org': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '64', 'blank': 'True'}), + 'role': ('django.db.models.fields.CharField', [], {'max_length': '64', 'db_index': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.courseenrollment': { + 'Meta': {'ordering': "('user', 'course_id')", 'unique_together': "(('user', 'course_id'),)", 'object_name': 'CourseEnrollment'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'max_length': '255', 'db_index': 'True'}), + 'created': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'null': 'True', 'db_index': 'True', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), + 'mode': ('django.db.models.fields.CharField', [], {'default': "'honor'", 'max_length': '100'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.courseenrollmentallowed': { + 'Meta': {'unique_together': "(('email', 'course_id'),)", 'object_name': 'CourseEnrollmentAllowed'}, + 'auto_enroll': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'max_length': '255', 'db_index': 'True'}), + 'created': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'null': 'True', 'db_index': 'True', 'blank': 'True'}), + 'email': ('django.db.models.fields.CharField', [], {'max_length': '255', 'db_index': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}) + }, + 'student.dashboardconfiguration': { + 'Meta': {'object_name': 'DashboardConfiguration'}, + 'change_date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), + 'changed_by': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'on_delete': 'models.PROTECT'}), + 'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'recent_enrollment_time_delta': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}) + }, + 'student.linkedinaddtoprofileconfiguration': { + 'Meta': {'object_name': 'LinkedInAddToProfileConfiguration'}, + 'change_date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), + 'changed_by': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'on_delete': 'models.PROTECT'}), + 'company_identifier': ('django.db.models.fields.TextField', [], {}), + 'dashboard_tracking_code': ('django.db.models.fields.TextField', [], {'default': "''", 'blank': 'True'}), + 'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'trk_partner_name': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '10', 'blank': 'True'}) + }, + 'student.loginfailures': { + 'Meta': {'object_name': 'LoginFailures'}, + 'failure_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'lockout_until': ('django.db.models.fields.DateTimeField', [], {'null': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.passwordhistory': { + 'Meta': {'object_name': 'PasswordHistory'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), + 'time_set': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.pendingemailchange': { + 'Meta': {'object_name': 'PendingEmailChange'}, + 'activation_key': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32', 'db_index': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'new_email': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'user': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['auth.User']", 'unique': 'True'}) + }, + 'student.pendingnamechange': { + 'Meta': {'object_name': 'PendingNameChange'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'new_name': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), + 'rationale': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'blank': 'True'}), + 'user': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['auth.User']", 'unique': 'True'}) + }, + 'student.registration': { + 'Meta': {'object_name': 'Registration', 'db_table': "'auth_registration'"}, + 'activation_key': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32', 'db_index': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'unique': 'True'}) + }, + 'student.userprofile': { + 'Meta': {'object_name': 'UserProfile', 'db_table': "'auth_userprofile'"}, + 'allow_certificate': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), + 'city': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}), + 'country': ('django_countries.fields.CountryField', [], {'max_length': '2', 'null': 'True', 'blank': 'True'}), + 'courseware': ('django.db.models.fields.CharField', [], {'default': "'course.xml'", 'max_length': '255', 'blank': 'True'}), + 'gender': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '6', 'null': 'True', 'blank': 'True'}), + 'goals': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'language': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'level_of_education': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '6', 'null': 'True', 'blank': 'True'}), + 'location': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'mailing_address': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}), + 'meta': ('django.db.models.fields.TextField', [], {'blank': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '255', 'blank': 'True'}), + 'user': ('django.db.models.fields.related.OneToOneField', [], {'related_name': "'profile'", 'unique': 'True', 'to': "orm['auth.User']"}), + 'year_of_birth': ('django.db.models.fields.IntegerField', [], {'db_index': 'True', 'null': 'True', 'blank': 'True'}) + }, + 'student.usersignupsource': { + 'Meta': {'object_name': 'UserSignupSource'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'site': ('django.db.models.fields.CharField', [], {'max_length': '255', 'db_index': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}) + }, + 'student.userstanding': { + 'Meta': {'object_name': 'UserStanding'}, + 'account_status': ('django.db.models.fields.CharField', [], {'max_length': '31', 'blank': 'True'}), + 'changed_by': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'standing_last_changed_at': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'standing'", 'unique': 'True', 'to': "orm['auth.User']"}) + }, + 'student.usertestgroup': { + 'Meta': {'object_name': 'UserTestGroup'}, + 'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '32', 'db_index': 'True'}), + 'users': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.User']", 'db_index': 'True', 'symmetrical': 'False'}) + } + } + + complete_apps = ['student'] diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 7af3830650..ea6afc5a09 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -1467,34 +1467,88 @@ class LinkedInAddToProfileConfiguration(ConfigurationModel): # Deprecated dashboard_tracking_code = models.TextField(default="", blank=True) - def add_to_profile_url(self, course_name, enrollment_mode, cert_url, source="o"): + trk_partner_name = models.CharField( + max_length=10, + default="", + blank=True, + help_text=ugettext_lazy( + u"Short identifier for the LinkedIn partner used in the tracking code. " + u"(Example: 'edx') " + u"If no value is provided, tracking codes will not be sent to LinkedIn." + ) + ) + + def add_to_profile_url(self, course_key, course_name, cert_mode, cert_url, source="o", target="dashboard"): """Construct the URL for the "add to profile" button. Arguments: + course_key (CourseKey): The identifier for the course. course_name (unicode): The display name of the course. - enrollment_mode (str): The enrollment mode of the user (e.g. "verified", "honor", "professional") + cert_mode (str): The course mode of the user's certificate (e.g. "verified", "honor", "professional") cert_url (str): The download URL for the certificate. Keyword Arguments: source (str): Either "o" (for onsite/UI), "e" (for emails), or "m" (for mobile) + target (str): An identifier for the occurrance of the button. """ params = OrderedDict([ ('_ed', self.company_identifier), - ('pfCertificationName', self._cert_name(course_name, enrollment_mode).encode('utf-8')), + ('pfCertificationName', self._cert_name(course_name, cert_mode).encode('utf-8')), ('pfCertificationUrl', cert_url), ('source', source) ]) + + tracking_code = self._tracking_code(course_key, cert_mode, target) + if tracking_code is not None: + params['trk'] = tracking_code + return u'http://www.linkedin.com/profile/add?{params}'.format( params=urlencode(params) ) - def _cert_name(self, course_name, enrollment_mode): + def _cert_name(self, course_name, cert_mode): """Name of the certification, for display on LinkedIn. """ return self.MODE_TO_CERT_NAME.get( - enrollment_mode, + cert_mode, _(u"{platform_name} Certificate for {course_name}") ).format( platform_name=settings.PLATFORM_NAME, course_name=course_name ) + + def _tracking_code(self, course_key, cert_mode, target): + """Create a tracking code for the button. + + Tracking codes are used by LinkedIn to collect + analytics about certifications users are adding + to their profiles. + + The tracking code format is: + &trk=[partner name]-[certificate type]-[date]-[target field] + + In our case, we're sending: + &trk=edx-{COURSE ID}_{COURSE MODE}-{TARGET} + + If no partner code is configured, then this will + return None, indicating that tracking codes are disabled. + + Arguments: + + course_key (CourseKey): The identifier for the course. + cert_mode (str): The enrollment mode for the course. + target (str): Identifier for where the button is located. + + Returns: + unicode or None + + """ + return ( + u"{partner}-{course_key}_{cert_mode}-{target}".format( + partner=self.trk_partner_name, + course_key=unicode(course_key), + cert_mode=cert_mode, + target=target + ) + if self.trk_partner_name else None + ) diff --git a/common/djangoapps/student/tests/test_create_account.py b/common/djangoapps/student/tests/test_create_account.py index e72dd971eb..3a9a5b0180 100644 --- a/common/djangoapps/student/tests/test_create_account.py +++ b/common/djangoapps/student/tests/test_create_account.py @@ -1,4 +1,5 @@ "Tests for account creation" +import json import ddt import unittest @@ -9,11 +10,13 @@ from django.core.urlresolvers import reverse from django.contrib.auth.models import AnonymousUser from django.utils.importlib import import_module from django.test import TestCase, TransactionTestCase +from django.test.utils import override_settings import mock from openedx.core.djangoapps.user_api.models import UserPreference from lang_pref import LANGUAGE_KEY +from notification_prefs import NOTIFICATION_PREF_KEY from edxmako.tests import mako_middleware_process_request from external_auth.models import ExternalAuthMap @@ -23,6 +26,21 @@ TEST_CS_URL = 'https://comments.service.test:123/' @ddt.ddt +@override_settings( + MICROSITE_CONFIGURATION={ + "microsite": { + "domain_prefix": "microsite", + "extended_profile_fields": ["extra1", "extra2"], + } + }, + REGISTRATION_EXTRA_FIELDS={ + key: "optional" + for key in [ + "level_of_education", "gender", "mailing_address", "city", "country", "goals", + "year_of_birth" + ] + } +) class TestCreateAccount(TestCase): "Tests for account creation" @@ -50,9 +68,112 @@ class TestCreateAccount(TestCase): @ddt.data("en", "eo") def test_header_lang_pref_saved(self, lang): response = self.client.post(self.url, self.params, HTTP_ACCEPT_LANGUAGE=lang) + user = User.objects.get(username=self.username) + self.assertEqual(response.status_code, 200) + self.assertEqual(UserPreference.get_preference(user, LANGUAGE_KEY), lang) + + def create_account_and_fetch_profile(self): + """ + Create an account with self.params, assert that the response indicates + success, and return the UserProfile object for the newly created user + """ + response = self.client.post(self.url, self.params, HTTP_HOST="microsite.example.com") self.assertEqual(response.status_code, 200) user = User.objects.get(username=self.username) - self.assertEqual(UserPreference.get_preference(user, LANGUAGE_KEY), lang) + return user.profile + + def test_marketing_cookie(self): + response = self.client.post(self.url, self.params) + self.assertEqual(response.status_code, 200) + self.assertIn(settings.EDXMKTG_COOKIE_NAME, self.client.cookies) + + @unittest.skipUnless( + "microsite_configuration.middleware.MicrositeMiddleware" in settings.MIDDLEWARE_CLASSES, + "Microsites not implemented in this environment" + ) + def test_profile_saved_no_optional_fields(self): + profile = self.create_account_and_fetch_profile() + self.assertEqual(profile.name, self.params["name"]) + self.assertEqual(profile.level_of_education, "") + self.assertEqual(profile.gender, "") + self.assertEqual(profile.mailing_address, "") + self.assertEqual(profile.city, "") + self.assertEqual(profile.country, "") + self.assertEqual(profile.goals, "") + self.assertEqual( + profile.get_meta(), + { + "extra1": "", + "extra2": "", + } + ) + self.assertIsNone(profile.year_of_birth) + + @unittest.skipUnless( + "microsite_configuration.middleware.MicrositeMiddleware" in settings.MIDDLEWARE_CLASSES, + "Microsites not implemented in this environment" + ) + def test_profile_saved_all_optional_fields(self): + self.params.update({ + "level_of_education": "a", + "gender": "o", + "mailing_address": "123 Example Rd", + "city": "Exampleton", + "country": "US", + "goals": "To test this feature", + "year_of_birth": "2015", + "extra1": "extra_value1", + "extra2": "extra_value2", + }) + profile = self.create_account_and_fetch_profile() + self.assertEqual(profile.level_of_education, "a") + self.assertEqual(profile.gender, "o") + self.assertEqual(profile.mailing_address, "123 Example Rd") + self.assertEqual(profile.city, "Exampleton") + self.assertEqual(profile.country, "US") + self.assertEqual(profile.goals, "To test this feature") + self.assertEqual( + profile.get_meta(), + { + "extra1": "extra_value1", + "extra2": "extra_value2", + } + ) + self.assertEqual(profile.year_of_birth, 2015) + + @unittest.skipUnless( + "microsite_configuration.middleware.MicrositeMiddleware" in settings.MIDDLEWARE_CLASSES, + "Microsites not implemented in this environment" + ) + def test_profile_saved_empty_optional_fields(self): + self.params.update({ + "level_of_education": "", + "gender": "", + "mailing_address": "", + "city": "", + "country": "", + "goals": "", + "year_of_birth": "", + "extra1": "", + "extra2": "", + }) + profile = self.create_account_and_fetch_profile() + self.assertEqual(profile.level_of_education, "") + self.assertEqual(profile.gender, "") + self.assertEqual(profile.mailing_address, "") + self.assertEqual(profile.city, "") + self.assertEqual(profile.country, "") + self.assertEqual(profile.goals, "") + self.assertEqual( + profile.get_meta(), + {"extra1": "", "extra2": ""} + ) + self.assertEqual(profile.year_of_birth, None) + + def test_profile_year_of_birth_non_integer(self): + self.params["year_of_birth"] = "not_an_integer" + profile = self.create_account_and_fetch_profile() + self.assertIsNone(profile.year_of_birth) def base_extauth_bypass_sending_activation_email(self, bypass_activation_email_for_extauth_setting): """ @@ -98,6 +219,248 @@ class TestCreateAccount(TestCase): """ self.base_extauth_bypass_sending_activation_email(False) + @ddt.data(True, False) + def test_discussions_email_digest_pref(self, digest_enabled): + with mock.patch.dict("student.models.settings.FEATURES", {"ENABLE_DISCUSSION_EMAIL_DIGEST": digest_enabled}): + response = self.client.post(self.url, self.params) + self.assertEqual(response.status_code, 200) + user = User.objects.get(username=self.username) + preference = UserPreference.get_preference(user, NOTIFICATION_PREF_KEY) + if digest_enabled: + self.assertIsNotNone(preference) + else: + self.assertIsNone(preference) + + +@ddt.ddt +class TestCreateAccountValidation(TestCase): + """ + Test validation of various parameters in the create_account view + """ + def setUp(self): + super(TestCreateAccountValidation, self).setUp() + self.url = reverse("create_account") + self.minimal_params = { + "username": "test_username", + "email": "test_email@example.com", + "password": "test_password", + "name": "Test Name", + "honor_code": "true", + "terms_of_service": "true", + } + + def assert_success(self, params): + """ + Request account creation with the given params and assert that the + response properly indicates success + """ + response = self.client.post(self.url, params) + self.assertEqual(response.status_code, 200) + response_data = json.loads(response.content) + self.assertTrue(response_data["success"]) + + def assert_error(self, params, expected_field, expected_value): + """ + Request account creation with the given params and assert that the + response properly indicates an error with the given field and value + """ + response = self.client.post(self.url, params) + self.assertEqual(response.status_code, 400) + response_data = json.loads(response.content) + self.assertFalse(response_data["success"]) + self.assertEqual(response_data["field"], expected_field) + self.assertEqual(response_data["value"], expected_value) + + def test_minimal_success(self): + self.assert_success(self.minimal_params) + + def test_username(self): + params = dict(self.minimal_params) + + def assert_username_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "username", expected_error) + + # Missing + del params["username"] + assert_username_error("Username must be minimum of two characters long") + + # Empty, too short + for username in ["", "a"]: + params["username"] = username + assert_username_error("Username must be minimum of two characters long") + + # Too long + params["username"] = "this_username_has_31_characters" + assert_username_error("Username cannot be more than 30 characters long") + + # Invalid + params["username"] = "invalid username" + assert_username_error("Username should only consist of A-Z and 0-9, with no spaces.") + + def test_email(self): + params = dict(self.minimal_params) + + def assert_email_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "email", expected_error) + + # Missing + del params["email"] + assert_email_error("A properly formatted e-mail is required") + + # Empty, too short + for email in ["", "a"]: + params["email"] = email + assert_email_error("A properly formatted e-mail is required") + + # Too long + params["email"] = "this_email_address_has_76_characters_in_it_so_it_is_unacceptable@example.com" + assert_email_error("Email cannot be more than 75 characters long") + + # Invalid + params["email"] = "not_an_email_address" + assert_email_error("A properly formatted e-mail is required") + + def test_password(self): + params = dict(self.minimal_params) + + def assert_password_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "password", expected_error) + + # Missing + del params["password"] + assert_password_error("A valid password is required") + + # Empty, too short + for password in ["", "a"]: + params["password"] = password + assert_password_error("A valid password is required") + + # Password policy is tested elsewhere + + # Matching username + params["username"] = params["password"] = "test_username_and_password" + assert_password_error("Username and password fields cannot match") + + def test_name(self): + params = dict(self.minimal_params) + + def assert_name_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "name", expected_error) + + # Missing + del params["name"] + assert_name_error("Your legal name must be a minimum of two characters long") + + # Empty, too short + for name in ["", "a"]: + params["name"] = name + assert_name_error("Your legal name must be a minimum of two characters long") + + def test_honor_code(self): + params = dict(self.minimal_params) + + def assert_honor_code_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "honor_code", expected_error) + + with override_settings(REGISTRATION_EXTRA_FIELDS={"honor_code": "required"}): + # Missing + del params["honor_code"] + assert_honor_code_error("To enroll, you must follow the honor code.") + + # Empty, invalid + for honor_code in ["", "false", "not_boolean"]: + params["honor_code"] = honor_code + assert_honor_code_error("To enroll, you must follow the honor code.") + + # True + params["honor_code"] = "tRUe" + self.assert_success(params) + + with override_settings(REGISTRATION_EXTRA_FIELDS={"honor_code": "optional"}): + # Missing + del params["honor_code"] + # Need to change username/email because user was created above + params["username"] = "another_test_username" + params["email"] = "another_test_email@example.com" + self.assert_success(params) + + def test_terms_of_service(self): + params = dict(self.minimal_params) + + def assert_terms_of_service_error(expected_error): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, "terms_of_service", expected_error) + + # Missing + del params["terms_of_service"] + assert_terms_of_service_error("You must accept the terms of service.") + + # Empty, invalid + for terms_of_service in ["", "false", "not_boolean"]: + params["terms_of_service"] = terms_of_service + assert_terms_of_service_error("You must accept the terms of service.") + + # True + params["terms_of_service"] = "tRUe" + self.assert_success(params) + + @ddt.data( + ("level_of_education", 1, "A level of education is required"), + ("gender", 1, "Your gender is required"), + ("year_of_birth", 2, "Your year of birth is required"), + ("mailing_address", 2, "Your mailing address is required"), + ("goals", 2, "A description of your goals is required"), + ("city", 2, "A city is required"), + ("country", 2, "A country is required"), + ("custom_field", 2, "You are missing one or more required fields") + ) + @ddt.unpack + def test_extra_fields(self, field, min_length, expected_error): + params = dict(self.minimal_params) + + def assert_extra_field_error(): + """ + Assert that requesting account creation results in the expected + error + """ + self.assert_error(params, field, expected_error) + + with override_settings(REGISTRATION_EXTRA_FIELDS={field: "required"}): + # Missing + assert_extra_field_error() + + # Empty + params[field] = "" + assert_extra_field_error() + + # Too short + if min_length > 1: + params[field] = "a" + assert_extra_field_error() + @mock.patch.dict("student.models.settings.FEATURES", {"ENABLE_DISCUSSION_SERVICE": True}) @mock.patch("lms.lib.comment_client.User.base_url", TEST_CS_URL) diff --git a/common/djangoapps/student/tests/test_linkedin.py b/common/djangoapps/student/tests/test_linkedin.py new file mode 100644 index 0000000000..ef399465de --- /dev/null +++ b/common/djangoapps/student/tests/test_linkedin.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +"""Tests for LinkedIn Add to Profile configuration. """ + +import ddt +from urllib import urlencode + +from django.test import TestCase +from opaque_keys.edx.locator import CourseLocator +from student.models import LinkedInAddToProfileConfiguration + + +@ddt.ddt +class LinkedInAddToProfileUrlTests(TestCase): + """Tests for URL generation of LinkedInAddToProfileConfig. """ + + COURSE_KEY = CourseLocator(org="edx", course="DemoX", run="Demo_Course") + COURSE_NAME = u"Test Course ☃" + CERT_URL = u"http://s3.edx/cert" + + @ddt.data( + ('honor', u'edX+Honor+Code+Certificate+for+Test+Course+%E2%98%83'), + ('verified', u'edX+Verified+Certificate+for+Test+Course+%E2%98%83'), + ('professional', u'edX+Professional+Certificate+for+Test+Course+%E2%98%83'), + ('default_mode', u'edX+Certificate+for+Test+Course+%E2%98%83') + ) + @ddt.unpack + def test_linked_in_url(self, cert_mode, expected_cert_name): + config = LinkedInAddToProfileConfiguration( + company_identifier='0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9', + enabled=True + ) + + expected_url = ( + 'http://www.linkedin.com/profile/add' + '?_ed=0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9&' + 'pfCertificationName={expected_cert_name}&' + 'pfCertificationUrl=http%3A%2F%2Fs3.edx%2Fcert&' + 'source=o' + ).format(expected_cert_name=expected_cert_name) + + actual_url = config.add_to_profile_url( + self.COURSE_KEY, + self.COURSE_NAME, + cert_mode, + self.CERT_URL + ) + + self.assertEqual(actual_url, expected_url) + + def test_linked_in_url_tracking_code(self): + config = LinkedInAddToProfileConfiguration( + company_identifier="abcd123", + trk_partner_name="edx", + enabled=True + ) + + expected_param = urlencode({ + 'trk': u'edx-{course_key}_honor-dashboard'.format( + course_key=self.COURSE_KEY + ) + }) + + actual_url = config.add_to_profile_url( + self.COURSE_KEY, + self.COURSE_NAME, + 'honor', + self.CERT_URL + ) + + self.assertIn(expected_param, actual_url) diff --git a/common/djangoapps/student/tests/test_verification_status.py b/common/djangoapps/student/tests/test_verification_status.py index d9949c8db1..4a63a460e6 100644 --- a/common/djangoapps/student/tests/test_verification_status.py +++ b/common/djangoapps/student/tests/test_verification_status.py @@ -212,6 +212,19 @@ class TestCourseVerificationStatus(UrlResetMixin, ModuleStoreTestCase): # a verification is active). self._assert_course_verification_status(VERIFY_STATUS_NEED_TO_REVERIFY) + def test_verification_occurred_after_deadline(self): + # Expiration date in the past + self._setup_mode_and_enrollment(self.PAST, "verified") + + # The deadline has passed, and we've asked the student + # to reverify (through the support team). + attempt = SoftwareSecurePhotoVerification.objects.create(user=self.user) + attempt.mark_ready() + attempt.submit() + + # Expect that the user's displayed enrollment mode is verified. + self._assert_course_verification_status(VERIFY_STATUS_APPROVED) + def _setup_mode_and_enrollment(self, deadline, enrollment_mode): """Create a course mode and enrollment. diff --git a/common/djangoapps/student/tests/tests.py b/common/djangoapps/student/tests/tests.py index eb1a0ffbf9..bedf147b58 100644 --- a/common/djangoapps/student/tests/tests.py +++ b/common/djangoapps/student/tests/tests.py @@ -17,7 +17,6 @@ from django.contrib.sessions.middleware import SessionMiddleware from django.core.urlresolvers import reverse from django.test import TestCase from django.test.client import RequestFactory, Client -from django.test.utils import override_settings from mock import Mock, patch from opaque_keys.edx.locations import SlashSeparatedCourseKey @@ -49,13 +48,6 @@ log = logging.getLogger(__name__) class CourseEndingTest(TestCase): """Test things related to course endings: certificates, surveys, etc""" - def setUp(self): - super(CourseEndingTest, self).setUp() - - # Clear the model-based config cache to avoid - # interference between tests. - cache.clear() - def test_process_survey_link(self): username = "fred" user = Mock(username=username) @@ -198,118 +190,6 @@ class CourseEndingTest(TestCase): } self.assertIsNone(_cert_info(user, course2, cert_status, course_mode)) - def test_linked_in_url_with_unicode_course_display_name(self): - """Test with unicode display name values.""" - - user = Mock(username="fred") - survey_url = "http://a_survey.com" - course = Mock( - end_of_course_survey_url=survey_url, - certificates_display_behavior='end', - display_name=u'edx/abc/courseregisters®' - ) - download_url = 'http://s3.edx/cert' - - cert_status = { - 'status': 'downloadable', 'grade': '67', - 'download_url': download_url, - 'mode': 'honor' - } - LinkedInAddToProfileConfiguration( - company_identifier='0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9', - enabled=True - ).save() - - status_dict = _cert_info(user, course, cert_status, 'honor') - expected_url = ( - 'http://www.linkedin.com/profile/add' - '?_ed=0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9&' - 'pfCertificationName=edX+Honor+Code+Certificate+for+edx%2Fabc%2Fcourseregisters%C2%AE&' - 'pfCertificationUrl=http%3A%2F%2Fs3.edx%2Fcert&' - 'source=o' - ) - self.assertEqual(expected_url, status_dict['linked_in_url']) - - def test_linked_in_url_not_exists_without_config(self): - user = Mock(username="fred") - survey_url = "http://a_survey.com" - course = Mock( - display_name="Demo Course", - end_of_course_survey_url=survey_url, - certificates_display_behavior='end' - ) - - download_url = 'http://s3.edx/cert' - cert_status = { - 'status': 'downloadable', 'grade': '67', - 'download_url': download_url, - 'mode': 'verified' - } - - self.assertEqual( - _cert_info(user, course, cert_status, 'verified'), - { - 'status': 'ready', - 'show_disabled_download_button': False, - 'show_download_url': True, - 'download_url': download_url, - 'show_survey_button': True, - 'survey_url': survey_url, - 'grade': '67', - 'mode': 'verified', - 'linked_in_url': None - } - ) - - # Enabling the configuration will cause the LinkedIn - # "add to profile" button to appear. - # We need to clear the cache again to make sure we - # pick up the modified configuration. - cache.clear() - LinkedInAddToProfileConfiguration( - company_identifier='0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9', - enabled=True - ).save() - - status_dict = _cert_info(user, course, cert_status, 'honor') - expected_url = ( - 'http://www.linkedin.com/profile/add' - '?_ed=0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9&' - 'pfCertificationName=edX+Verified+Certificate+for+Demo+Course&' - 'pfCertificationUrl=http%3A%2F%2Fs3.edx%2Fcert&' - 'source=o' - ) - self.assertEqual(expected_url, status_dict['linked_in_url']) - - @ddt.data( - ('honor', 'edX Honor Code Certificate for DemoX'), - ('verified', 'edX Verified Certificate for DemoX'), - ('professional', 'edX Professional Certificate for DemoX'), - ('default_mode', 'edX Certificate for DemoX') - ) - @ddt.unpack - def test_linked_in_url_certificate_types(self, cert_mode, cert_name): - user = Mock(username="fred") - course = Mock( - display_name='DemoX', - end_of_course_survey_url='http://example.com', - certificates_display_behavior='end' - ) - cert_status = { - 'status': 'downloadable', - 'grade': '67', - 'download_url': 'http://edx.org', - 'mode': cert_mode - } - - LinkedInAddToProfileConfiguration( - company_identifier="abcd123", - enabled=True - ).save() - - status_dict = _cert_info(user, course, cert_status, cert_mode) - self.assertIn(cert_name.replace(' ', '+'), status_dict['linked_in_url']) - class DashboardTest(ModuleStoreTestCase): """ @@ -518,10 +398,7 @@ class DashboardTest(ModuleStoreTestCase): @unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms') def test_linked_in_add_to_profile_btn_not_appearing_without_config(self): - - """ - without linked-in config don't show Add Certificate to LinkedIn button - """ + # Without linked-in config don't show Add Certificate to LinkedIn button self.client.login(username="jack", password="test") CourseModeFactory.create( @@ -557,12 +434,8 @@ class DashboardTest(ModuleStoreTestCase): @unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms') def test_linked_in_add_to_profile_btn_with_certificate(self): - - """ - If user has a certificate with valid linked-in config then Add Certificate to LinkedIn button - should be visible. and it has URL value with valid parameters. - """ - + # If user has a certificate with valid linked-in config then Add Certificate to LinkedIn button + # should be visible. and it has URL value with valid parameters. self.client.login(username="jack", password="test") LinkedInAddToProfileConfiguration( company_identifier='0_mC_o2MizqdtZEmkVXjH4eYwMj4DnkCWrZP_D9', diff --git a/common/djangoapps/student/views.py b/common/djangoapps/student/views.py index 02a1abf86c..bbb3482a9b 100644 --- a/common/djangoapps/student/views.py +++ b/common/djangoapps/student/views.py @@ -56,7 +56,7 @@ from student.models import ( CourseEnrollmentAllowed, UserStanding, LoginFailures, create_comments_service_user, PasswordHistory, UserSignupSource, DashboardConfiguration, LinkedInAddToProfileConfiguration) -from student.forms import PasswordResetFormNoActive +from student.forms import AccountCreationForm, PasswordResetFormNoActive from verify_student.models import SoftwareSecurePhotoVerification, MidcourseReverificationWindow from certificates.models import CertificateStatuses, certificate_status_for_student @@ -86,6 +86,7 @@ from bulk_email.models import Optout, CourseAuthorization import shoppingcart from openedx.core.djangoapps.user_api.models import UserPreference from lang_pref import LANGUAGE_KEY +from notification_prefs.views import enable_notifications import track.views @@ -360,6 +361,7 @@ def _cert_info(user, course, cert_status, course_mode): linkedin_config = LinkedInAddToProfileConfiguration.current() if linkedin_config.enabled: status_dict['linked_in_url'] = linkedin_config.add_to_profile_url( + course.id, course.display_name, cert_status.get('mode'), cert_status['download_url'] @@ -1336,7 +1338,7 @@ def user_signup_handler(sender, **kwargs): # pylint: disable=unused-argument log.info(u'user {} originated from a white labeled "Microsite"'.format(kwargs['instance'].id)) -def _do_create_account(post_vars, extended_profile=None): +def _do_create_account(form): """ Given cleaned post variables, create the User and UserProfile objects, as well as the registration for this user. @@ -1345,10 +1347,15 @@ def _do_create_account(post_vars, extended_profile=None): Note: this function is also used for creating test users. """ - user = User(username=post_vars['username'], - email=post_vars['email'], - is_active=False) - user.set_password(post_vars['password']) + if not form.is_valid(): + raise ValidationError(form.errors) + + user = User( + username=form.cleaned_data["username"], + email=form.cleaned_data["email"], + is_active=False + ) + user.set_password(form.cleaned_data["password"]) registration = Registration() # TODO: Rearrange so that if part of the process fails, the whole process fails. @@ -1357,14 +1364,14 @@ def _do_create_account(post_vars, extended_profile=None): user.save() except IntegrityError: # Figure out the cause of the integrity error - if len(User.objects.filter(username=post_vars['username'])) > 0: + if len(User.objects.filter(username=user.username)) > 0: raise AccountValidationError( - _("An account with the Public Username '{username}' already exists.").format(username=post_vars['username']), + _("An account with the Public Username '{username}' already exists.").format(username=user.username), field="username" ) - elif len(User.objects.filter(email=post_vars['email'])) > 0: + elif len(User.objects.filter(email=user.email)) > 0: raise AccountValidationError( - _("An account with the Email '{email}' already exists.").format(email=post_vars['email']), + _("An account with the Email '{email}' already exists.").format(email=user.email), field="email" ) else: @@ -1377,25 +1384,17 @@ def _do_create_account(post_vars, extended_profile=None): registration.register(user) - profile = UserProfile(user=user) - profile.name = post_vars['name'] - profile.level_of_education = post_vars.get('level_of_education') - profile.gender = post_vars.get('gender') - profile.mailing_address = post_vars.get('mailing_address') - profile.city = post_vars.get('city') - profile.country = post_vars.get('country') - profile.goals = post_vars.get('goals') - - # add any extended profile information in the denormalized 'meta' field in the profile + profile_fields = [ + "name", "level_of_education", "gender", "mailing_address", "city", "country", "goals", + "year_of_birth" + ] + profile = UserProfile( + user=user, + **{key: form.cleaned_data.get(key) for key in profile_fields} + ) + extended_profile = form.cleaned_extended_profile if extended_profile: profile.meta = json.dumps(extended_profile) - - try: - profile.year_of_birth = int(post_vars['year_of_birth']) - except (ValueError, KeyError): - # If they give us garbage, just ignore it instead - # of asking them to put an integer. - profile.year_of_birth = None try: profile.save() except Exception: # pylint: disable=broad-except @@ -1407,15 +1406,23 @@ def _do_create_account(post_vars, extended_profile=None): return (user, profile, registration) -@csrf_exempt -def create_account(request, post_override=None): # pylint: disable-msg=too-many-statements +def create_account_with_params(request, params): """ - JSON call to create new edX account. - Used by form in signup_modal.html, which is included into navigation.html - """ - js = {'success': False} # pylint: disable-msg=invalid-name + Given a request and a dict of parameters (which may or may not have come + from the request), create an account for the requesting user, including + creating a comments service user object and sending an activation email. + This also takes external/third-party auth into account, updates that as + necessary, and authenticates the user for the request's session. - post_vars = post_override if post_override else request.POST + Does not return anything. + + Raises AccountValidationError if an account with the username or email + specified by params already exists, or ValidationError if any of the given + parameters is invalid for any other reason. + """ + # Copy params so we can modify it; we can't just do dict(params) because if + # params is request.POST, that results in a dict containing lists of values + params = dict(params.items()) # allow for microsites to define their own set of required/optional/hidden fields extra_fields = microsite.get_value( @@ -1424,42 +1431,30 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many ) if third_party_auth.is_enabled() and pipeline.running(request): - post_vars = dict(post_vars.items()) - post_vars.update({'password': pipeline.make_random_password()}) + params["password"] = pipeline.make_random_password() # if doing signup for an external authorization, then get email, password, name from the eamap # don't use the ones from the form, since the user could have hacked those # unless originally we didn't get a valid email or name from the external auth + # TODO: We do not check whether these values meet all necessary criteria, such as email length do_external_auth = 'ExternalAuthMap' in request.session if do_external_auth: eamap = request.session['ExternalAuthMap'] try: validate_email(eamap.external_email) - email = eamap.external_email + params["email"] = eamap.external_email except ValidationError: - email = post_vars.get('email', '') - if eamap.external_name.strip() == '': - name = post_vars.get('name', '') - else: - name = eamap.external_name - password = eamap.internal_password - post_vars = dict(post_vars.items()) - post_vars.update(dict(email=email, name=name, password=password)) - log.debug(u'In create_account with external_auth: user = %s, email=%s', name, email) - - # Confirm we have a properly formed request - for req_field in ['username', 'email', 'password', 'name']: - if req_field not in post_vars: - js['value'] = _("Error (401 {field}). E-mail us.").format(field=req_field) - js['field'] = req_field - return JsonResponse(js, status=400) - - if extra_fields.get('honor_code', 'required') == 'required' and \ - post_vars.get('honor_code', 'false') != u'true': - js['value'] = _("To enroll, you must follow the honor code.") - js['field'] = 'honor_code' - return JsonResponse(js, status=400) + pass + if eamap.external_name.strip() != '': + params["name"] = eamap.external_name + params["password"] = eamap.internal_password + log.debug(u'In create_account with external_auth: user = %s, email=%s', params["name"], params["email"]) + extended_profile_fields = microsite.get_value('extended_profile_fields', []) + enforce_password_policy = ( + settings.FEATURES.get("ENFORCE_PASSWORD_POLICY", False) and + not do_external_auth + ) # Can't have terms of service for certain SHIB users, like at Stanford tos_required = ( not settings.FEATURES.get("AUTH_USE_SHIB") or @@ -1470,135 +1465,34 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many ) ) - if tos_required: - if post_vars.get('terms_of_service', 'false') != u'true': - js['value'] = _("You must accept the terms of service.") - js['field'] = 'terms_of_service' - return JsonResponse(js, status=400) + form = AccountCreationForm( + data=params, + extra_fields=extra_fields, + extended_profile_fields=extended_profile_fields, + enforce_username_neq_password=True, + enforce_password_policy=enforce_password_policy, + tos_required=tos_required + ) - # Confirm appropriate fields are there. - # TODO: Check e-mail format is correct. - # TODO: Confirm e-mail is not from a generic domain (mailinator, etc.)? Not sure if - # this is a good idea - # TODO: Check password is sane - - required_post_vars = ['username', 'email', 'name', 'password'] - required_post_vars += [fieldname for fieldname, val in extra_fields.items() - if val == 'required'] - if tos_required: - required_post_vars.append('terms_of_service') - - for field_name in required_post_vars: - if field_name in ('gender', 'level_of_education'): - min_length = 1 - else: - min_length = 2 - - if field_name not in post_vars or len(post_vars[field_name]) < min_length: - error_str = { - 'username': _('Username must be minimum of two characters long'), - 'email': _('A properly formatted e-mail is required'), - 'name': _('Your legal name must be a minimum of two characters long'), - 'password': _('A valid password is required'), - 'terms_of_service': _('Accepting Terms of Service is required'), - 'honor_code': _('Agreeing to the Honor Code is required'), - 'level_of_education': _('A level of education is required'), - 'gender': _('Your gender is required'), - 'year_of_birth': _('Your year of birth is required'), - 'mailing_address': _('Your mailing address is required'), - 'goals': _('A description of your goals is required'), - 'city': _('A city is required'), - 'country': _('A country is required') - } - - if field_name in error_str: - js['value'] = error_str[field_name] - else: - js['value'] = _('You are missing one or more required fields') - - js['field'] = field_name - return JsonResponse(js, status=400) - - max_length = 75 - if field_name == 'username': - max_length = 30 - - if field_name in ('email', 'username') and len(post_vars[field_name]) > max_length: - error_str = { - 'username': _('Username cannot be more than {num} characters long').format(num=max_length), - 'email': _('Email cannot be more than {num} characters long').format(num=max_length) - } - js['value'] = error_str[field_name] - js['field'] = field_name - return JsonResponse(js, status=400) - - try: - validate_email(post_vars['email']) - except ValidationError: - js['value'] = _("Valid e-mail is required.") - js['field'] = 'email' - return JsonResponse(js, status=400) - - try: - validate_slug(post_vars['username']) - except ValidationError: - js['value'] = _("Username should only consist of A-Z and 0-9, with no spaces.") - js['field'] = 'username' - return JsonResponse(js, status=400) - - # enforce password complexity as an optional feature - # but not if we're doing ext auth b/c those pws never get used and are auto-generated so might not pass validation - if settings.FEATURES.get('ENFORCE_PASSWORD_POLICY', False) and not do_external_auth: - try: - password = post_vars['password'] - - validate_password_length(password) - validate_password_complexity(password) - validate_password_dictionary(password) - except ValidationError, err: - js['value'] = _('Password: ') + '; '.join(err.messages) - js['field'] = 'password' - return JsonResponse(js, status=400) - - # allow microsites to define 'extended profile fields' which are - # captured on user signup (for example via an overriden registration.html) - # and then stored in the UserProfile - extended_profile_fields = microsite.get_value('extended_profile_fields', []) - extended_profile = None - - for field in extended_profile_fields: - if field in post_vars: - if not extended_profile: - extended_profile = {} - extended_profile[field] = post_vars[field] - - # Make sure that password and username fields do not match - username = post_vars['username'] - password = post_vars['password'] - if username == password: - js['value'] = _("Username and password fields cannot match") - js['field'] = 'username' - return JsonResponse(js, status=400) - - # Ok, looks like everything is legit. Create the account. - try: - with transaction.commit_on_success(): - ret = _do_create_account(post_vars, extended_profile) - except AccountValidationError as exc: - return JsonResponse({'success': False, 'value': exc.message, 'field': exc.field}, status=400) + with transaction.commit_on_success(): + ret = _do_create_account(form) (user, profile, registration) = ret - dog_stats_api.increment("common.student.account_created") + if settings.FEATURES.get('ENABLE_DISCUSSION_EMAIL_DIGEST'): + try: + enable_notifications(user) + except Exception: + log.exception("Enable discussion notifications failed for user {id}.".format(id=user.id)) - email = post_vars['email'] + dog_stats_api.increment("common.student.account_created") # Track the user's registration if settings.FEATURES.get('SEGMENT_IO_LMS') and hasattr(settings, 'SEGMENT_IO_LMS_KEY'): tracking_context = tracker.get_tracker().resolve_context() analytics.identify(user.id, { - 'email': email, - 'username': username, + 'email': user.email, + 'username': user.username, }) # If the user is registering via 3rd party auth, track which provider they use @@ -1613,7 +1507,7 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many "edx.bi.user.account.registered", { 'category': 'conversion', - 'label': request.POST.get('course_id'), + 'label': params.get('course_id'), 'provider': provider_name }, context={ @@ -1626,7 +1520,7 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many create_comments_service_user(user) context = { - 'name': post_vars['name'], + 'name': profile.name, 'key': registration.activation_key, } @@ -1657,16 +1551,11 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many user.email_user(subject, message, from_address) except Exception: # pylint: disable=broad-except log.error(u'Unable to send activation email to user from "%s"', from_address, exc_info=True) - js['value'] = _('Could not send activation e-mail.') - # What is the correct status code to use here? I think it's 500, because - # the problem is on the server's end -- but also, the account was created. - # Seems like the core part of the request was successful. - return JsonResponse(js, status=500) # Immediately after a user creates an account, we log them in. They are only # logged in until they close the browser. They can't log in again until they click # the activation link from the email. - new_user = authenticate(username=post_vars['username'], password=post_vars['password']) + new_user = authenticate(username=user.username, password=params['password']) login(request, new_user) request.session.set_expiry(0) @@ -1679,8 +1568,8 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many eamap.user = new_user eamap.dtsignup = datetime.datetime.now(UTC) eamap.save() - AUDIT_LOG.info(u"User registered with external_auth %s", post_vars['username']) - AUDIT_LOG.info(u'Updated ExternalAuthMap for %s to be %s', post_vars['username'], eamap) + AUDIT_LOG.info(u"User registered with external_auth %s", new_user.username) + AUDIT_LOG.info(u'Updated ExternalAuthMap for %s to be %s', new_user.username, eamap) if settings.FEATURES.get('BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'): log.info('bypassing activation email') @@ -1688,7 +1577,55 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many new_user.save() AUDIT_LOG.info(u"Login activated on extauth account - {0} ({1})".format(new_user.username, new_user.email)) - dog_stats_api.increment("common.student.account_created") + +def set_marketing_cookie(request, response): + """ + Set the login cookie for the edx marketing site on the given response. Its + expiration will match that of the given request's session. + """ + if request.session.get_expire_at_browser_close(): + max_age = None + expires = None + else: + max_age = request.session.get_expiry_age() + expires_time = time.time() + max_age + expires = cookie_date(expires_time) + + # we want this cookie to be accessed via javascript + # so httponly is set to None + response.set_cookie( + settings.EDXMKTG_COOKIE_NAME, + 'true', + max_age=max_age, + expires=expires, + domain=settings.SESSION_COOKIE_DOMAIN, + path='/', + secure=None, + httponly=None + ) + + +@csrf_exempt +def create_account(request, post_override=None): + """ + JSON call to create new edX account. + Used by form in signup_modal.html, which is included into navigation.html + """ + try: + create_account_with_params(request, post_override or request.POST) + except AccountValidationError as exc: + return JsonResponse({'success': False, 'value': exc.message, 'field': exc.field}, status=400) + except ValidationError as exc: + field, error_list = next(exc.message_dict.iteritems()) + return JsonResponse( + { + "success": False, + "field": field, + "value": error_list[0], + }, + status=400 + ) + redirect_url = try_change_enrollment(request) # Resume the third-party-auth pipeline if necessary. @@ -1700,25 +1637,7 @@ def create_account(request, post_override=None): # pylint: disable-msg=too-many 'success': True, 'redirect_url': redirect_url, }) - - # set the login cookie for the edx marketing site - # we want this cookie to be accessed via javascript - # so httponly is set to None - - if request.session.get_expire_at_browser_close(): - max_age = None - expires = None - else: - max_age = request.session.get_expiry_age() - expires_time = time.time() + max_age - expires = cookie_date(expires_time) - - response.set_cookie(settings.EDXMKTG_COOKIE_NAME, - 'true', max_age=max_age, - expires=expires, domain=settings.SESSION_COOKIE_DOMAIN, - path='/', - secure=None, - httponly=None) + set_marketing_cookie(request, response) return response @@ -1757,21 +1676,21 @@ def auto_auth(request): role_names = [v.strip() for v in request.GET.get('roles', '').split(',') if v.strip()] login_when_done = 'no_login' not in request.GET - # Get or create the user object - post_data = { - 'username': username, - 'email': email, - 'password': password, - 'name': full_name, - 'honor_code': u'true', - 'terms_of_service': u'true', - } + form = AccountCreationForm( + data={ + 'username': username, + 'email': email, + 'password': password, + 'name': full_name, + }, + tos_required=False + ) # Attempt to create the account. # If successful, this will return a tuple containing # the new user object. try: - user, _profile, reg = _do_create_account(post_data) + user, _profile, reg = _do_create_account(form) except AccountValidationError: # Attempt to retrieve the existing user. user = User.objects.get(username=username) diff --git a/common/djangoapps/util/authentication.py b/common/djangoapps/util/authentication.py index 901f3ad6e8..92f46861c4 100644 --- a/common/djangoapps/util/authentication.py +++ b/common/djangoapps/util/authentication.py @@ -1,5 +1,7 @@ """ Common Authentication Handlers used across projects. """ from rest_framework import authentication +from rest_framework.exceptions import AuthenticationFailed +from rest_framework.compat import oauth2_provider, provider_now class SessionAuthenticationAllowInactiveUser(authentication.SessionAuthentication): @@ -39,10 +41,42 @@ class SessionAuthenticationAllowInactiveUser(authentication.SessionAuthenticatio # Unauthenticated, CSRF validation not required # This is where regular `SessionAuthentication` checks that the user is active. # We have removed that check in this implementation. - if not user: + # But we added a check to prevent anonymous users since we require a logged-in account. + if not user or user.is_anonymous(): return None self.enforce_csrf(request) # CSRF passed with authenticated user return (user, None) + + +class OAuth2AuthenticationAllowInactiveUser(authentication.OAuth2Authentication): + """ + This is a temporary workaround while the is_active field on the user is coupled + with whether or not the user has verified ownership of their claimed email address. + Once is_active is decoupled from verified_email, we will no longer need this + class override. + + But until then, this authentication class ensures that the user is logged in, + but does not require that their account "is_active". + + This class can be used for an OAuth2-accessible endpoint that allows users to access + that endpoint without having their email verified. For example, this is used + for mobile endpoints. + + """ + def authenticate_credentials(self, request, access_token): + """ + Authenticate the request, given the access token. + Override base class implementation to discard failure if user is inactive. + """ + try: + token = oauth2_provider.oauth2.models.AccessToken.objects.select_related('user') + # provider_now switches to timezone aware datetime when + # the oauth2_provider version supports to it. + token = token.get(token=access_token, expires__gt=provider_now()) + except oauth2_provider.oauth2.models.AccessToken.DoesNotExist: + raise AuthenticationFailed('Invalid token') + + return token.user, token diff --git a/common/djangoapps/util/tests/test_authentication.py b/common/djangoapps/util/tests/test_authentication.py new file mode 100644 index 0000000000..fe9a1dbd47 --- /dev/null +++ b/common/djangoapps/util/tests/test_authentication.py @@ -0,0 +1,63 @@ +"""Tests for util.authentication module.""" + +from mock import patch +from django.conf import settings +from rest_framework import permissions +from rest_framework.compat import patterns, url +from rest_framework.tests import test_authentication +from provider import scope, constants +from unittest import skipUnless + +from ..authentication import OAuth2AuthenticationAllowInactiveUser + + +class OAuth2AuthAllowInactiveUserDebug(OAuth2AuthenticationAllowInactiveUser): + """ + A debug class analogous to the OAuth2AuthenticationDebug class that tests + the OAuth2 flow with the access token sent in a query param.""" + allow_query_params_token = True + + +# The following patch overrides the URL patterns for the MockView class used in +# rest_framework.tests.test_authentication so that the corresponding AllowInactiveUser +# classes are tested instead. +@skipUnless(settings.FEATURES.get('ENABLE_OAUTH2_PROVIDER'), 'OAuth2 not enabled') +@patch.object( + test_authentication, + 'urlpatterns', + patterns( + '', + url( + r'^oauth2-test/$', + test_authentication.MockView.as_view(authentication_classes=[OAuth2AuthenticationAllowInactiveUser]) + ), + url( + r'^oauth2-test-debug/$', + test_authentication.MockView.as_view(authentication_classes=[OAuth2AuthAllowInactiveUserDebug]) + ), + url( + r'^oauth2-with-scope-test/$', + test_authentication.MockView.as_view( + authentication_classes=[OAuth2AuthenticationAllowInactiveUser], + permission_classes=[permissions.TokenHasReadWriteScope] + ) + ) + ) +) +class OAuth2AuthenticationAllowInactiveUserTestCase(test_authentication.OAuth2Tests): + """ + Tests the OAuth2AuthenticationAllowInactiveUser class by running all the existing tests in + OAuth2Tests but with the is_active flag on the user set to False. + """ + def setUp(self): + super(OAuth2AuthenticationAllowInactiveUserTestCase, self).setUp() + + # set the user's is_active flag to False. + self.user.is_active = False + self.user.save() + + # Override the SCOPE_NAME_DICT setting for tests for oauth2-with-scope-test. This is + # needed to support READ and WRITE scopes as they currently aren't supported by the + # edx-auth2-provider, and their scope values collide with other scopes defined in the + # edx-auth2-provider. + scope.SCOPE_NAME_DICT = {'read': constants.READ, 'write': constants.WRITE} diff --git a/common/lib/capa/capa/capa_problem.py b/common/lib/capa/capa/capa_problem.py index 699db9aaf3..48b07bd876 100644 --- a/common/lib/capa/capa/capa_problem.py +++ b/common/lib/capa/capa/capa_problem.py @@ -710,12 +710,14 @@ class LoncapaProblem(object): hint = '' hintmode = None input_id = problemtree.get('id') + answervariable = None if problemid in self.correct_map: pid = input_id status = self.correct_map.get_correctness(pid) msg = self.correct_map.get_msg(pid) hint = self.correct_map.get_hint(pid) hintmode = self.correct_map.get_hintmode(pid) + answervariable = self.correct_map.get_property(pid, 'answervariable') value = "" if self.student_answers and problemid in self.student_answers: @@ -730,6 +732,7 @@ class LoncapaProblem(object): 'status': status, 'id': input_id, 'input_state': self.input_state[input_id], + 'answervariable': answervariable, 'feedback': { 'message': msg, 'hint': hint, diff --git a/common/lib/capa/capa/correctmap.py b/common/lib/capa/capa/correctmap.py index e470ac294e..9af728552a 100644 --- a/common/lib/capa/capa/correctmap.py +++ b/common/lib/capa/capa/correctmap.py @@ -46,6 +46,7 @@ class CorrectMap(object): hint='', hintmode=None, queuestate=None, + answervariable=None, # pylint: disable=C0330 **kwargs ): @@ -57,6 +58,7 @@ class CorrectMap(object): 'hint': hint, 'hintmode': hintmode, 'queuestate': queuestate, + 'answervariable': answervariable, } def __repr__(self): diff --git a/common/lib/capa/capa/customrender.py b/common/lib/capa/capa/customrender.py index bc80d270f4..8b42b76bf5 100644 --- a/common/lib/capa/capa/customrender.py +++ b/common/lib/capa/capa/customrender.py @@ -6,8 +6,6 @@ These tags do not have state, so they just get passed the system (for access to and the xml element. """ -from .registry import TagRegistry - import logging import re @@ -137,3 +135,35 @@ class TargetedFeedbackRenderer(object): return xhtml registry.register(TargetedFeedbackRenderer) + +#----------------------------------------------------------------------------- + + +class ClarificationRenderer(object): + """ + A clarification appears as an inline icon which reveals more information when the user + hovers over it. + + e.g.

Enter the ROA Return on Assets for 2015:

+ """ + tags = ['clarification'] + + def __init__(self, system, xml): + self.system = system + # Get any text content found inside this tag prior to the first child tag. It may be a string or None type. + initial_text = xml.text if xml.text else '' + self.inner_html = initial_text + ''.join(etree.tostring(element) for element in xml) # pylint: disable=no-member + self.tail = xml.tail + + def get_html(self): + """ + Return the contents of this tag, rendered to html, as an etree element. + """ + context = {'clarification': self.inner_html} + html = self.system.render_template("clarification.html", context) + xml = etree.XML(html) # pylint: disable=no-member + # We must include any text that was following our original ... XML node.: + xml.tail = self.tail + return xml + +registry.register(ClarificationRenderer) diff --git a/common/lib/capa/capa/inputtypes.py b/common/lib/capa/capa/inputtypes.py index 9b7d3af9c9..cb31fbe5c6 100644 --- a/common/lib/capa/capa/inputtypes.py +++ b/common/lib/capa/capa/inputtypes.py @@ -213,6 +213,7 @@ class InputTypeBase(object): self.hint = feedback.get('hint', '') self.hintmode = feedback.get('hintmode', None) self.input_state = state.get('input_state', {}) + self.answervariable = state.get("answervariable", None) # put hint above msg if it should be displayed if self.hintmode == 'always': @@ -310,6 +311,8 @@ class InputTypeBase(object): (a, v) for (a, v) in self.loaded_attributes.iteritems() if a in self.to_render ) context.update(self._extra_context()) + if self.answervariable: + context.update({'answervariable': self.answervariable}) return context def _extra_context(self): @@ -1013,8 +1016,6 @@ class Schematic(InputTypeBase): ] def _extra_context(self): - """ - """ context = { 'setup_script': '{static_url}js/capa/schematicinput.js'.format( static_url=self.capa_system.STATIC_URL), @@ -1407,8 +1408,6 @@ class EditAMoleculeInput(InputTypeBase): Attribute('missing', None)] def _extra_context(self): - """ - """ context = { 'applet_loader': '{static_url}js/capa/editamolecule.js'.format( static_url=self.capa_system.STATIC_URL), @@ -1443,8 +1442,6 @@ class DesignProtein2dInput(InputTypeBase): ] def _extra_context(self): - """ - """ context = { 'applet_loader': '{static_url}js/capa/design-protein-2d.js'.format( static_url=self.capa_system.STATIC_URL), @@ -1479,8 +1476,6 @@ class EditAGeneInput(InputTypeBase): ] def _extra_context(self): - """ - """ context = { 'applet_loader': '{static_url}js/capa/edit-a-gene.js'.format( static_url=self.capa_system.STATIC_URL), diff --git a/common/lib/capa/capa/responsetypes.py b/common/lib/capa/capa/responsetypes.py index 63eff0bc21..9678af75cb 100644 --- a/common/lib/capa/capa/responsetypes.py +++ b/common/lib/capa/capa/responsetypes.py @@ -1097,6 +1097,9 @@ class OptionResponse(LoncapaResponse): cmap.set(aid, 'correct') else: cmap.set(aid, 'incorrect') + answer_variable = self.get_student_answer_variable_name(student_answers, aid) + if answer_variable: + cmap.set_property(aid, 'answervariable', answer_variable) return cmap def get_answers(self): @@ -1105,6 +1108,18 @@ class OptionResponse(LoncapaResponse): # log.debug('%s: expected answers=%s' % (unicode(self),amap)) return amap + def get_student_answer_variable_name(self, student_answers, aid): + """ + Return student answers variable name if exist in context else None. + """ + if aid in student_answers: + for key, val in self.context.iteritems(): + # convert val into unicode because student answer always be a unicode string + # even it is a list, dict etc. + if unicode(val) == student_answers[aid]: + return '$' + key + return None + #----------------------------------------------------------------------------- diff --git a/common/lib/capa/capa/templates/clarification.html b/common/lib/capa/capa/templates/clarification.html new file mode 100644 index 0000000000..6f730cfac5 --- /dev/null +++ b/common/lib/capa/capa/templates/clarification.html @@ -0,0 +1,5 @@ + + + (${clarification}) + diff --git a/common/lib/capa/capa/templates/formulaequationinput.html b/common/lib/capa/capa/templates/formulaequationinput.html index 10b3b22ea5..69cce798b3 100644 --- a/common/lib/capa/capa/templates/formulaequationinput.html +++ b/common/lib/capa/capa/templates/formulaequationinput.html @@ -25,7 +25,7 @@
\[\] - + Loading

diff --git a/common/lib/capa/capa/templates/imageinput.html b/common/lib/capa/capa/templates/imageinput.html index b8e5d3aa46..e397c29743 100644 --- a/common/lib/capa/capa/templates/imageinput.html +++ b/common/lib/capa/capa/templates/imageinput.html @@ -22,6 +22,7 @@ src="${STATIC_URL}images/green-pointer.png" id="cross_${id}" style="position: absolute; top: ${gy}px; left: ${gx}px;" + alt="Selection indicator" />
% for option_id, option_description in options: diff --git a/common/lib/capa/capa/tests/response_xml_factory.py b/common/lib/capa/capa/tests/response_xml_factory.py index f98704a0e3..ba4af2bbe8 100644 --- a/common/lib/capa/capa/tests/response_xml_factory.py +++ b/common/lib/capa/capa/tests/response_xml_factory.py @@ -254,27 +254,6 @@ class CustomResponseXMLFactory(ResponseXMLFactory): return ResponseXMLFactory.textline_input_xml(**kwargs) -class SymbolicResponseXMLFactory(ResponseXMLFactory): - """ Factory for creating XML trees """ - - def create_response_element(self, **kwargs): - cfn = kwargs.get('cfn', None) - answer = kwargs.get('answer', None) - options = kwargs.get('options', None) - - response_element = etree.Element("symbolicresponse") - if cfn: - response_element.set('cfn', str(cfn)) - if answer: - response_element.set('answer', str(answer)) - if options: - response_element.set('options', str(options)) - return response_element - - def create_input_element(self, **kwargs): - return ResponseXMLFactory.textline_input_xml(**kwargs) - - class SchematicResponseXMLFactory(ResponseXMLFactory): """ Factory for creating XML trees """ diff --git a/common/lib/capa/capa/tests/test_html_render.py b/common/lib/capa/capa/tests/test_html_render.py index f1b5249338..c4925603c8 100644 --- a/common/lib/capa/capa/tests/test_html_render.py +++ b/common/lib/capa/capa/tests/test_html_render.py @@ -27,8 +27,7 @@ class CapaHtmlRenderTest(unittest.TestCase): # Render the HTML etree.XML(problem.get_html()) - # expect that we made it here without blowing up - self.assertTrue(True) + # TODO: This test should inspect the rendered html and assert one or more things about it def test_include_html(self): # Create a test file to include diff --git a/common/lib/capa/capa/tests/test_responsetypes.py b/common/lib/capa/capa/tests/test_responsetypes.py index 5883af6074..a0daa45b32 100644 --- a/common/lib/capa/capa/tests/test_responsetypes.py +++ b/common/lib/capa/capa/tests/test_responsetypes.py @@ -23,6 +23,23 @@ import calc from capa.responsetypes import LoncapaProblemError, \ StudentInputError, ResponseError from capa.correctmap import CorrectMap +from capa.tests.response_xml_factory import ( + AnnotationResponseXMLFactory, + ChoiceResponseXMLFactory, + CodeResponseXMLFactory, + ChoiceTextResponseXMLFactory, + CustomResponseXMLFactory, + FormulaResponseXMLFactory, + ImageResponseXMLFactory, + JavascriptResponseXMLFactory, + MultipleChoiceResponseXMLFactory, + NumericalResponseXMLFactory, + OptionResponseXMLFactory, + SchematicResponseXMLFactory, + StringResponseXMLFactory, + SymbolicResponseXMLFactory, + TrueFalseResponseXMLFactory, +) from capa.util import convert_files_to_filenames from capa.util import compare_with_tolerance from capa.xqueue_interface import dateformat @@ -77,7 +94,6 @@ class ResponseTest(unittest.TestCase): class MultiChoiceResponseTest(ResponseTest): - from capa.tests.response_xml_factory import MultipleChoiceResponseXMLFactory xml_factory_class = MultipleChoiceResponseXMLFactory def test_multiple_choice_grade(self): @@ -99,7 +115,6 @@ class MultiChoiceResponseTest(ResponseTest): class TrueFalseResponseTest(ResponseTest): - from capa.tests.response_xml_factory import TrueFalseResponseXMLFactory xml_factory_class = TrueFalseResponseXMLFactory def test_true_false_grade(self): @@ -139,7 +154,6 @@ class TrueFalseResponseTest(ResponseTest): class ImageResponseTest(ResponseTest): - from capa.tests.response_xml_factory import ImageResponseXMLFactory xml_factory_class = ImageResponseXMLFactory def test_rectangle_grade(self): @@ -203,7 +217,6 @@ class ImageResponseTest(ResponseTest): class SymbolicResponseTest(ResponseTest): - from capa.tests.response_xml_factory import SymbolicResponseXMLFactory xml_factory_class = SymbolicResponseXMLFactory def test_grade_single_input_correct(self): @@ -321,7 +334,6 @@ class SymbolicResponseTest(ResponseTest): class OptionResponseTest(ResponseTest): - from capa.tests.response_xml_factory import OptionResponseXMLFactory xml_factory_class = OptionResponseXMLFactory def test_grade(self): @@ -347,12 +359,31 @@ class OptionResponseTest(ResponseTest): self.assert_grade(problem, "hasn\'t", "correct") self.assert_grade(problem, "has'nt", "incorrect") + def test_variable_options(self): + """ + Test that if variable are given in option response then correct map must contain answervariable value. + """ + script = textwrap.dedent("""\ + a = 1000 + b = a*2 + c = a*3 + """) + problem = self.build_problem( + options=['$a', '$b', '$c'], + correct_option='$a', + script=script + ) + + input_dict = {'1_2_1': '1000'} + correct_map = problem.grade_answers(input_dict) + self.assertEqual(correct_map.get_correctness('1_2_1'), 'correct') + self.assertEqual(correct_map.get_property('1_2_1', 'answervariable'), '$a') + class FormulaResponseTest(ResponseTest): """ Test the FormulaResponse class """ - from capa.tests.response_xml_factory import FormulaResponseXMLFactory xml_factory_class = FormulaResponseXMLFactory def test_grade(self): @@ -501,7 +532,6 @@ class FormulaResponseTest(ResponseTest): class StringResponseTest(ResponseTest): - from capa.tests.response_xml_factory import StringResponseXMLFactory xml_factory_class = StringResponseXMLFactory def test_backward_compatibility_for_multiple_answers(self): @@ -851,7 +881,6 @@ class StringResponseTest(ResponseTest): class CodeResponseTest(ResponseTest): - from capa.tests.response_xml_factory import CodeResponseXMLFactory xml_factory_class = CodeResponseXMLFactory def setUp(self): @@ -1043,7 +1072,6 @@ class CodeResponseTest(ResponseTest): class ChoiceResponseTest(ResponseTest): - from capa.tests.response_xml_factory import ChoiceResponseXMLFactory xml_factory_class = ChoiceResponseXMLFactory def test_radio_group_grade(self): @@ -1086,7 +1114,6 @@ class ChoiceResponseTest(ResponseTest): class JavascriptResponseTest(ResponseTest): - from capa.tests.response_xml_factory import JavascriptResponseXMLFactory xml_factory_class = JavascriptResponseXMLFactory def test_grade(self): @@ -1127,7 +1154,6 @@ class JavascriptResponseTest(ResponseTest): class NumericalResponseTest(ResponseTest): - from capa.tests.response_xml_factory import NumericalResponseXMLFactory xml_factory_class = NumericalResponseXMLFactory # We blend the line between integration (using evaluator) and exclusively @@ -1352,7 +1378,6 @@ class NumericalResponseTest(ResponseTest): class CustomResponseTest(ResponseTest): - from capa.tests.response_xml_factory import CustomResponseXMLFactory xml_factory_class = CustomResponseXMLFactory def test_inline_code(self): @@ -1904,7 +1929,6 @@ class SchematicResponseTest(ResponseTest): """ Class containing setup and tests for Schematic responsetype. """ - from capa.tests.response_xml_factory import SchematicResponseXMLFactory xml_factory_class = SchematicResponseXMLFactory def test_grade(self): @@ -1955,7 +1979,6 @@ class SchematicResponseTest(ResponseTest): class AnnotationResponseTest(ResponseTest): - from capa.tests.response_xml_factory import AnnotationResponseXMLFactory xml_factory_class = AnnotationResponseXMLFactory def test_grade(self): @@ -1997,7 +2020,6 @@ class ChoiceTextResponseTest(ResponseTest): Class containing setup and tests for ChoiceText responsetype. """ - from response_xml_factory import ChoiceTextResponseXMLFactory xml_factory_class = ChoiceTextResponseXMLFactory # `TEST_INPUTS` is a dictionary mapping from @@ -2168,13 +2190,6 @@ class ChoiceTextResponseTest(ResponseTest): with self.assertRaises(Exception): self.build_problem(type="invalidtextgroup") - def test_valid_xml(self): - """ - Test that `build_problem` builds valid xml - """ - self.build_problem() - self.assertTrue(True) - def test_unchecked_input_not_validated(self): """ Test that a student can have a non numeric answer in an unselected diff --git a/common/lib/xmodule/xmodule/css/capa/display.scss b/common/lib/xmodule/xmodule/css/capa/display.scss index 4bd9368d8c..303a38a5d5 100644 --- a/common/lib/xmodule/xmodule/css/capa/display.scss +++ b/common/lib/xmodule/xmodule/css/capa/display.scss @@ -162,6 +162,12 @@ div.problem { white-space: nowrap; overflow: hidden; } + span.clarification i { + font-style: normal; + &:hover { + color: $blue; + } + } } &.unanswered { diff --git a/common/lib/xmodule/xmodule/exceptions.py b/common/lib/xmodule/xmodule/exceptions.py index a6d3686ca2..d1f05171da 100644 --- a/common/lib/xmodule/xmodule/exceptions.py +++ b/common/lib/xmodule/xmodule/exceptions.py @@ -53,4 +53,4 @@ class HeartbeatFailure(Exception): In addition to a msg, provide the name of the service. """ self.service = service - return super(HeartbeatFailure, self).__init__(msg) + super(HeartbeatFailure, self).__init__(msg) diff --git a/common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js b/common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js index 324975efe8..269a75053c 100644 --- a/common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js +++ b/common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js @@ -217,43 +217,30 @@ expect(menuSubmenuItem).not.toHaveClass('is-opened'); }); - // Flaky-test resulting in timeout errors. Disabled 09/18/2014 - // See TNL-439 - xit('mouse left/right-clicking behaves as expected on play/pause menu item', function () { + it('mouse left/right-clicking behaves as expected on play/pause menu item', function () { var menuItem = menuItems.first(); - runs(function () { - // Left-click on play - menuItem.click(); + spyOn(state.videoPlayer, 'play').andCallFake(function () { + state.videoControl.isPlaying = true; + state.el.trigger('play'); }); - - waitsFor(function () { - return state.videoPlayer.isPlaying(); - }, 'video to start playing', 200); - - runs(function () { - expect(menuItem).toHaveText('Pause'); - openMenu(); - // Left-click on pause - menuItem.click(); - }); - - waitsFor(function () { - return !state.videoPlayer.isPlaying(); - }, 'video to start playing', 200); - - runs(function () { - expect(menuItem).toHaveText('Play'); - // Right-click on play - menuItem.trigger('contextmenu'); - }); - - waitsFor(function () { - return state.videoPlayer.isPlaying(); - }, 'video to start playing', 200); - - runs(function () { - expect(menuItem).toHaveText('Pause'); + spyOn(state.videoPlayer, 'pause').andCallFake(function () { + state.videoControl.isPlaying = false; + state.el.trigger('pause'); }); + // Left-click on play + menuItem.click(); + expect(state.videoPlayer.play).toHaveBeenCalled(); + expect(menuItem).toHaveText('Pause'); + openMenu(); + // Left-click on pause + menuItem.click(); + expect(state.videoPlayer.pause).toHaveBeenCalled(); + expect(menuItem).toHaveText('Play'); + state.videoPlayer.play.reset(); + // Right-click on play + menuItem.trigger('contextmenu'); + expect(state.videoPlayer.play).toHaveBeenCalled(); + expect(menuItem).toHaveText('Pause'); }); it('mouse left/right-clicking behaves as expected on mute/unmute menu item', function () { diff --git a/common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js b/common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js index d94557733f..da910d7bb0 100644 --- a/common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js +++ b/common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js @@ -367,6 +367,8 @@ function (VideoPlayer) { beforeEach(function () { state = jasmine.initializePlayer(); state.videoEl = $('video, iframe'); + jasmine.Clock.useMock(); + spyOn(state.videoPlayer, 'duration').andReturn(120); }); describe('when the video is playing', function () { @@ -376,9 +378,7 @@ function (VideoPlayer) { }); waitsFor(function () { - var duration = state.videoPlayer.duration(); - - return duration > 0 && state.videoPlayer.isPlaying(); + return state.videoPlayer.isPlaying(); }, 'video didn\'t start playing', WAIT_TIMEOUT); }); @@ -388,125 +388,13 @@ function (VideoPlayer) { spyOn(state.videoPlayer, 'stopTimer'); spyOn(state.videoPlayer, 'runTimer'); state.videoPlayer.seekTo(10); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(10); + expect(state.videoPlayer.stopTimer).toHaveBeenCalled(); + expect(state.videoPlayer.runTimer).toHaveBeenCalled(); }); - - waitsFor(function () { - return state.videoPlayer.currentTime >= 10; - }, 'currentTime is less than 10 seconds', WAIT_TIMEOUT); - - runs(function () { - expect(state.videoPlayer.stopTimer) - .toHaveBeenCalled(); - expect(state.videoPlayer.runTimer) - .toHaveBeenCalled(); - }); - }); - - // as per TNL-439 this test is deemed flaky and needs to be fixed. - // disabled 09/18/2014 - xit('slider event causes log update', function () { - runs(function () { - spyOn(state.videoPlayer, 'log'); - state.videoProgressSlider.onSlide( - jQuery.Event('slide'), { value: 2 } - ); - }); - - waitsFor(function () { - return state.videoPlayer.currentTime >= 2; - }, 'currentTime is less than 2 seconds', WAIT_TIMEOUT); - - runs(function () { - // Depending on the browser, the object of arrays may list the - // arrays in a different order. Find the array that is relevent - // to onSeek. Fail if that is not found. - var seekVideoArgIndex - for(var i = 0; i < state.videoPlayer.log.calls.length; i++){ - if (state.videoPlayer.log.calls[i].args[0] == 'seek_video') { - seekVideoArgIndex = i - break; - } - } - - expect(seekVideoArgIndex).toBeDefined; - - var args = state.videoPlayer.log.calls[seekVideoArgIndex].args; - - expect(args[1].old_time).toBeLessThan(2); - expect(args[1].new_time).toBe(2); - expect(args[1].type).toBe('onSlideSeek'); - }); - }); - - // as per TNL-439 this test is deemed flaky and needs to be fixed. - // disabled 09/18/2014 - xit('seek the player', function () { - runs(function () { - spyOn(state.videoPlayer.player, 'seekTo') - .andCallThrough(); - state.videoProgressSlider.onSlide( - jQuery.Event('slide'), { value: 30 } - ); - }); - - waitsFor(function () { - return state.videoPlayer.currentTime >= 30; - }, 'currentTime is less than 30 seconds', WAIT_TIMEOUT); - - runs(function () { - expect(state.videoPlayer.player.seekTo) - .toHaveBeenCalledWith(30, true); - }); - }); - - // as per TNL-439 this test is deemed flaky and needs to be fixed. - // disabled 09/18/2014 - xit('call updatePlayTime on player', function () { - runs(function () { - spyOn(state.videoPlayer, 'updatePlayTime') - .andCallThrough(); - state.videoProgressSlider.onSlide( - jQuery.Event('slide'), { value: 30 } - ); - }); - - waitsFor(function () { - return state.videoPlayer.currentTime >= 30; - }, 'currentTime is less than 30 seconds', WAIT_TIMEOUT); - - runs(function () { - expect(state.videoPlayer.updatePlayTime) - .toHaveBeenCalledWith(30, true); - }); - }); - }); - - // Disabled 10/25/13 due to flakiness in master - xit( - 'when the player is not playing: set the current time', - function () - { - runs(function () { - state.videoProgressSlider.onSlide( - jQuery.Event('slide'), { value: 20 } - ); - state.videoPlayer.pause(); - state.videoProgressSlider.onSlide( - jQuery.Event('slide'), { value: 10 } - ); - - waitsFor(function () { - return Math.round(state.videoPlayer.currentTime) === 10; - }, 'currentTime got updated', 10000); - }); - }); - - // as per TNL-439 these tests are deemed flaky and needs to be fixed. - // disabled 09/18/2014 - xdescribe('when the video is not playing', function () { - beforeEach(function () { - spyOn(state.videoPlayer, 'setPlaybackRate') - .andCallThrough(); }); it('slider event causes log update', function () { @@ -515,23 +403,90 @@ function (VideoPlayer) { state.videoProgressSlider.onSlide( jQuery.Event('slide'), { value: 2 } ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(2); + + expect(state.videoPlayer.log).toHaveBeenCalledWith('seek_video', { + old_time: jasmine.any(Number), + new_time: 2, + type: 'onSlideSeek' + }); }); + }); - waitsFor(function () { - return state.videoPlayer.currentTime >= 2; - }, 'currentTime is less than 2 seconds', WAIT_TIMEOUT); - + it('seek the player', function () { runs(function () { - expect(state.videoPlayer.log).toHaveBeenCalledWith( - 'seek_video', { - old_time: 0, - new_time: 2, - type: 'onSlideSeek' - } + spyOn(state.videoPlayer.player, 'seekTo').andCallThrough(); + state.videoProgressSlider.onSlide( + jQuery.Event('slide'), { value: 30 } ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(30); + expect(state.videoPlayer.player.seekTo).toHaveBeenCalledWith(30, true); }); }); + it('call updatePlayTime on player', function () { + runs(function () { + spyOn(state.videoPlayer, 'updatePlayTime').andCallThrough(); + state.videoProgressSlider.onSlide( + jQuery.Event('slide'), { value: 30 } + ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(30); + expect(state.videoPlayer.updatePlayTime).toHaveBeenCalledWith(30, true); + }); + }); + }); + + it('when the player is not playing: set the current time', function () { + state.videoProgressSlider.onSlide( + jQuery.Event('slide'), { value: 20 } + ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + state.videoPlayer.pause(); + expect(state.videoPlayer.currentTime).toBe(20); + state.videoProgressSlider.onSlide( + jQuery.Event('slide'), { value: 10 } + ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(10); + }); + + describe('when the video is not playing', function () { + beforeEach(function () { + spyOn(state.videoPlayer, 'setPlaybackRate') + .andCallThrough(); + }); + + it('slider event causes log update', function () { + spyOn(state.videoPlayer, 'log'); + state.videoProgressSlider.onSlide( + jQuery.Event('slide'), { value: 2 } + ); + // Video player uses _.debounce (with a wait time in 300 ms) for seeking. + // That's why we have to do this tick(300). + jasmine.Clock.tick(300); + expect(state.videoPlayer.currentTime).toBe(2); + expect(state.videoPlayer.log).toHaveBeenCalledWith( + 'seek_video', { + old_time: 0, + new_time: 2, + type: 'onSlideSeek' + } + ); + }); + it('video has a correct speed', function () { state.speed = '2.0'; state.videoPlayer.onPlay(); diff --git a/common/lib/xmodule/xmodule/js/spec/video/video_quality_control_spec.js b/common/lib/xmodule/xmodule/js/spec/video/video_quality_control_spec.js index d36450c500..1ade3cb9ce 100644 --- a/common/lib/xmodule/xmodule/js/spec/video/video_quality_control_spec.js +++ b/common/lib/xmodule/xmodule/js/spec/video/video_quality_control_spec.js @@ -92,6 +92,19 @@ qualityControl.el.click(); expect(player.setPlaybackQuality).toHaveBeenCalledWith('large'); }); + + it('quality control is active if HD is available', + function () { + player.getAvailableQualityLevels.andReturn( + ['highres', 'hd1080', 'hd720'] + ); + + qualityControl.quality = 'highres'; + + videoPlayer.onPlay(); + expect(qualityControl.el).toHaveClass('active'); + }); + }); describe('constructor, HTML5 mode', function () { diff --git a/common/lib/xmodule/xmodule/js/src/capa/display.coffee b/common/lib/xmodule/xmodule/js/src/capa/display.coffee index 680fb90111..f5f8ff8668 100644 --- a/common/lib/xmodule/xmodule/js/src/capa/display.coffee +++ b/common/lib/xmodule/xmodule/js/src/capa/display.coffee @@ -34,6 +34,12 @@ class @Problem @$('div.action input.reset').click @reset @$('div.action button.show').click @show @$('div.action input.save').click @save + # Accessibility helper for sighted keyboard users to show tooltips on focus: + @$('.clarification').focus (ev) => + icon = $(ev.target).children "i" + window.globalTooltipManager.openTooltip icon + @$('.clarification').blur (ev) => + window.globalTooltipManager.hide() @bindResetCorrectness() diff --git a/common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js b/common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js index 7678586d4f..03eb4ccad0 100644 --- a/common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +++ b/common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js @@ -103,6 +103,7 @@ function () { // HD qualities are available, show video quality control. if (this.config.availableHDQualities.length > 0) { this.trigger('videoQualityControl.showQualityControl'); + this.trigger('videoQualityControl.onQualityChange', this.videoQualityControl.quality); } // On initialization, force the video quality to be 'large' instead of // 'default'. Otherwise, the player will sometimes switch to HD @@ -115,7 +116,6 @@ function () { function onQualityChange(value) { var controlStateStr; this.videoQualityControl.quality = value; - if (_.contains(this.config.availableHDQualities, value)) { controlStateStr = gettext('HD on'); this.videoQualityControl.el @@ -141,6 +141,7 @@ function () { event.preventDefault(); newQuality = isHD ? 'large' : 'highres'; + this.trigger('videoPlayer.handlePlaybackQualityChange', newQuality); } diff --git a/common/lib/xmodule/xmodule/modulestore/__init__.py b/common/lib/xmodule/xmodule/modulestore/__init__.py index 132d5c4c6b..b558cd37ce 100644 --- a/common/lib/xmodule/xmodule/modulestore/__init__.py +++ b/common/lib/xmodule/xmodule/modulestore/__init__.py @@ -777,10 +777,8 @@ class ModuleStoreRead(ModuleStoreAssetBase): for key, criteria in qualifiers.iteritems(): is_set, value = _is_set_on(key) - if isinstance(criteria, dict) and '$exists' in criteria and criteria['$exists'] == is_set: continue - if not is_set: return False if not self._value_matches(value, criteria): diff --git a/common/lib/xmodule/xmodule/modulestore/split_mongo/split.py b/common/lib/xmodule/xmodule/modulestore/split_mongo/split.py index 798dd9bf94..e7cb99df06 100644 --- a/common/lib/xmodule/xmodule/modulestore/split_mongo/split.py +++ b/common/lib/xmodule/xmodule/modulestore/split_mongo/split.py @@ -423,11 +423,12 @@ class SplitBulkWriteMixin(BulkOperationsMixin): ids.remove(definition_id) definitions.append(definition) - # Query the db for the definitions. - defs_from_db = self.db_connection.get_definitions(list(ids)) - # Add the retrieved definitions to the cache. - bulk_write_record.definitions.update({d.get('_id'): d for d in defs_from_db}) - definitions.extend(defs_from_db) + if len(ids): + # Query the db for the definitions. + defs_from_db = self.db_connection.get_definitions(list(ids)) + # Add the retrieved definitions to the cache. + bulk_write_record.definitions.update({d.get('_id'): d for d in defs_from_db}) + definitions.extend(defs_from_db) return definitions def update_definition(self, course_key, definition): @@ -683,7 +684,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): connection.close() def cache_items(self, system, base_block_ids, course_key, depth=0, lazy=True): - ''' + """ Handles caching of items once inheritance and any other one time per course per fetch operations are done. @@ -692,8 +693,8 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): base_block_ids: list of BlockIds to fetch course_key: the destination course providing the context depth: how deep below these to prefetch - lazy: whether to fetch definitions or use placeholders - ''' + lazy: whether to load definitions now or later + """ with self.bulk_operations(course_key, emit_signals=False): new_module_data = {} for block_id in base_block_ids: @@ -704,13 +705,9 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): new_module_data ) - # This code supports lazy loading, where the descendent definitions aren't loaded + # This method supports lazy loading, where the descendent definitions aren't loaded # until they're actually needed. - # However, assume that depth == 0 means no depth is specified and depth != 0 means - # a depth *is* specified. If a non-zero depth is specified, force non-lazy definition - # loading in order to populate the definition cache for later access. - load_definitions_now = depth != 0 or not lazy - if load_definitions_now: + if not lazy: # Non-lazy loading: Load all descendants by id. descendent_definitions = self.get_definitions( course_key, @@ -734,15 +731,16 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): return system.module_data @contract(course_entry=CourseEnvelope, block_keys="list(BlockKey)", depth="int | None") - def _load_items(self, course_entry, block_keys, depth=0, lazy=True, **kwargs): - ''' + def _load_items(self, course_entry, block_keys, depth=0, **kwargs): + """ Load & cache the given blocks from the course. May return the blocks in any order. - Load the definitions into each block if lazy is False; - otherwise, use the lazy definition placeholder. - ''' + Load the definitions into each block if lazy is in kwargs and is False; + otherwise, do not load the definitions - they'll be loaded later when needed. + """ runtime = self._get_cache(course_entry.structure['_id']) if runtime is None: + lazy = kwargs.pop('lazy', True) runtime = self.create_runtime(course_entry, lazy) self._add_cache(course_entry.structure['_id'], runtime) self.cache_items(runtime, block_keys, course_entry.course_key, depth, lazy) @@ -786,7 +784,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): self.request_cache.data['course_cache'] = {} def _lookup_course(self, course_key): - ''' + """ Decode the locator into the right series of db access. Does not return the CourseDescriptor! It returns the actual db json from structures. @@ -797,7 +795,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): reference) :param course_key: any subclass of CourseLocator - ''' + """ if course_key.org and course_key.course and course_key.run: if course_key.branch is None: raise InsufficientSpecificationError(course_key) @@ -864,7 +862,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): locator = locator_factory(structure_info, branch) envelope = CourseEnvelope(locator, entry) root = entry['root'] - structures_list = self._load_items(envelope, [root], 0, lazy=True, **kwargs) + structures_list = self._load_items(envelope, [root], depth=0, **kwargs) if not isinstance(structures_list[0], ErrorDescriptor): result.append(structures_list[0]) return result @@ -929,13 +927,13 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): """ structure_entry = self._lookup_course(structure_id) root = structure_entry.structure['root'] - result = self._load_items(structure_entry, [root], depth, lazy=True, **kwargs) + result = self._load_items(structure_entry, [root], depth, **kwargs) return result[0] def get_course(self, course_id, depth=0, **kwargs): - ''' + """ Gets the course descriptor for the course identified by the locator - ''' + """ if not isinstance(course_id, CourseLocator) or course_id.deprecated: # The supplied CourseKey is of the wrong type, so it can't possibly be stored in this modulestore. raise ItemNotFoundError(course_id) @@ -951,14 +949,14 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): return self._get_structure(library_id, depth, **kwargs) def has_course(self, course_id, ignore_case=False, **kwargs): - ''' + """ Does this course exist in this modulestore. This method does not verify that the branch &/or version in the course_id exists. Use get_course_index_info to check that. Returns the course_id of the course if it was found, else None Note: we return the course_id instead of a boolean here since the found course may have a different id than the given course_id when ignore_case is True. - ''' + """ if not isinstance(course_id, CourseLocator) or course_id.deprecated: # The supplied CourseKey is of the wrong type, so it can't possibly be stored in this modulestore. return False @@ -967,12 +965,12 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): return CourseLocator(course_index['org'], course_index['course'], course_index['run'], course_id.branch) if course_index else None def has_library(self, library_id, ignore_case=False, **kwargs): - ''' + """ Does this library exist in this modulestore. This method does not verify that the branch &/or version in the library_id exists. Returns the library_id of the course if it was found, else None. - ''' + """ if not isinstance(library_id, LibraryLocator): return None @@ -1017,7 +1015,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): with self.bulk_operations(usage_key.course_key): course = self._lookup_course(usage_key.course_key) - items = self._load_items(course, [BlockKey.from_usage_key(usage_key)], depth, lazy=True, **kwargs) + items = self._load_items(course, [BlockKey.from_usage_key(usage_key)], depth, **kwargs) if len(items) == 0: raise ItemNotFoundError(usage_key) elif len(items) > 1: @@ -1078,7 +1076,7 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): if block_name == block_id.id and _block_matches_all(block): block_ids.append(block_id) - return self._load_items(course, block_ids, lazy=True, **kwargs) + return self._load_items(course, block_ids, **kwargs) if 'category' in qualifiers: qualifiers['block_type'] = qualifiers.pop('category') @@ -1091,18 +1089,18 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): items.append(block_id) if len(items) > 0: - return self._load_items(course, items, 0, lazy=True, **kwargs) + return self._load_items(course, items, depth=0, **kwargs) else: return [] def get_parent_location(self, locator, **kwargs): - ''' + """ Return the location (Locators w/ block_ids) for the parent of this location in this course. Could use get_items(location, {'children': block_id}) but this is slightly faster. NOTE: the locator must contain the block_id, and this code does not actually ensure block_id exists :param locator: BlockUsageLocator restricting search scope - ''' + """ if not isinstance(locator, BlockUsageLocator) or locator.deprecated: # The supplied locator is of the wrong type, so it can't possibly be stored in this modulestore. raise ItemNotFoundError(locator) @@ -1208,12 +1206,12 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): return definition['edit_info'] def get_course_successors(self, course_locator, version_history_depth=1): - ''' + """ Find the version_history_depth next versions of this course. Return as a VersionTree Mostly makes sense when course_locator uses a version_guid, but because it finds all relevant next versions, these do include those created for other courses. :param course_locator: - ''' + """ if not isinstance(course_locator, CourseLocator) or course_locator.deprecated: # The supplied CourseKey is of the wrong type, so it can't possibly be stored in this modulestore. raise ItemNotFoundError(course_locator) @@ -1244,14 +1242,14 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): return VersionTree(course_locator, result) def get_block_generations(self, block_locator): - ''' + """ Find the history of this block. Return as a VersionTree of each place the block changed (except deletion). The block's history tracks its explicit changes but not the changes in its children starting from when the block was created. - ''' + """ # course_agnostic means we don't care if the head and version don't align, trust the version course_struct = self._lookup_course(block_locator.course_key.course_agnostic()).structure block_key = BlockKey.from_usage_key(block_locator) @@ -1296,9 +1294,9 @@ class SplitMongoModuleStore(SplitBulkWriteMixin, ModuleStoreWriteBase): ) def get_definition_successors(self, definition_locator, version_history_depth=1): - ''' + """ Find the version_history_depth next versions of this definition. Return as a VersionTree - ''' + """ # TODO implement pass diff --git a/common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py b/common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py index f5e34a89c7..b43b044df6 100644 --- a/common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py +++ b/common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py @@ -8,6 +8,7 @@ import logging import ddt import itertools import mimetypes +from unittest import skip from uuid import uuid4 # Mixed modulestore depends on django, so we'll manually configure some django settings @@ -61,7 +62,7 @@ class TestMixedModuleStore(CourseComparisonTest): ASSET_COLLECTION = 'assetstore' FS_ROOT = DATA_DIR DEFAULT_CLASS = 'xmodule.raw_module.RawDescriptor' - RENDER_TEMPLATE = lambda t_n, d, ctx = None, nsp = 'main': '' + RENDER_TEMPLATE = lambda t_n, d, ctx=None, nsp='main': '' MONGO_COURSEID = 'MITx/999/2013_Spring' XML_COURSEID1 = 'edX/toy/2012_Fall' @@ -1963,6 +1964,7 @@ class TestMixedModuleStore(CourseComparisonTest): dest_store = self.store._get_modulestore_by_type(ModuleStoreEnum.Type.split) self.assertCoursesEqual(source_store, source_course_key, dest_store, dest_course_id) + @skip("PLAT-449 XModule TestMixedModuleStore intermittent test failure") @ddt.data(ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split) def test_course_publish_signal_firing(self, default): with MongoContentstoreBuilder().build() as contentstore: diff --git a/common/lib/xmodule/xmodule/modulestore/tests/test_mongo.py b/common/lib/xmodule/xmodule/modulestore/tests/test_mongo.py index c20be348cc..1622823d8e 100644 --- a/common/lib/xmodule/xmodule/modulestore/tests/test_mongo.py +++ b/common/lib/xmodule/xmodule/modulestore/tests/test_mongo.py @@ -54,7 +54,7 @@ COLLECTION = 'modulestore' ASSET_COLLECTION = 'assetstore' FS_ROOT = DATA_DIR # TODO (vshnayder): will need a real fs_root for testing load_item DEFAULT_CLASS = 'xmodule.raw_module.RawDescriptor' -RENDER_TEMPLATE = lambda t_n, d, ctx = None, nsp = 'main': '' +RENDER_TEMPLATE = lambda t_n, d, ctx=None, nsp='main': '' class ReferenceTestXBlock(XBlock, XModuleMixin): diff --git a/common/lib/xmodule/xmodule/modulestore/tests/test_mongo_call_count.py b/common/lib/xmodule/xmodule/modulestore/tests/test_mongo_call_count.py index 0046fdd7ed..72e6ec4ef6 100644 --- a/common/lib/xmodule/xmodule/modulestore/tests/test_mongo_call_count.py +++ b/common/lib/xmodule/xmodule/modulestore/tests/test_mongo_call_count.py @@ -87,14 +87,39 @@ class CountMongoCallsCourseTraversal(TestCase): to the leaf nodes. """ + # Suppose you want to traverse a course - maybe accessing the fields of each XBlock in the course, + # maybe not. What parameters should one use for get_course() in order to minimize the number of + # mongo calls? The tests below both ensure that code changes don't increase the number of mongo calls + # during traversal -and- demonstrate how to minimize the number of calls. @ddt.data( - (MIXED_OLD_MONGO_MODULESTORE_BUILDER, None, 189), # The way this traversal *should* be done. - (MIXED_OLD_MONGO_MODULESTORE_BUILDER, 0, 387), # The pathological case - do *not* query a course this way! - (MIXED_SPLIT_MODULESTORE_BUILDER, None, 7), # The way this traversal *should* be done. - (MIXED_SPLIT_MODULESTORE_BUILDER, 0, 145) # The pathological case - do *not* query a course this way! + # These two lines show the way this traversal *should* be done + # (if you'll eventually access all the fields and load all the definitions anyway). + # 'lazy' does not matter in old Mongo. + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, None, False, True, 189), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, None, True, True, 189), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, 0, False, True, 387), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, 0, True, True, 387), + # As shown in these two lines: whether or not the XBlock fields are accessed, + # the same number of mongo calls are made in old Mongo for depth=None. + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, None, False, False, 189), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, None, True, False, 189), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, 0, False, False, 387), + (MIXED_OLD_MONGO_MODULESTORE_BUILDER, 0, True, False, 387), + # The line below shows the way this traversal *should* be done + # (if you'll eventually access all the fields and load all the definitions anyway). + (MIXED_SPLIT_MODULESTORE_BUILDER, None, False, True, 4), + (MIXED_SPLIT_MODULESTORE_BUILDER, None, True, True, 143), + (MIXED_SPLIT_MODULESTORE_BUILDER, 0, False, True, 143), + (MIXED_SPLIT_MODULESTORE_BUILDER, 0, True, True, 143), + (MIXED_SPLIT_MODULESTORE_BUILDER, None, False, False, 4), + (MIXED_SPLIT_MODULESTORE_BUILDER, None, True, False, 4), + # TODO: The call count below seems like a bug - should be 4? + # Seems to be related to using self.lazy in CachingDescriptorSystem.get_module_data(). + (MIXED_SPLIT_MODULESTORE_BUILDER, 0, False, False, 143), + (MIXED_SPLIT_MODULESTORE_BUILDER, 0, True, False, 4) ) @ddt.unpack - def test_number_mongo_calls(self, store, depth, num_mongo_calls): + def test_number_mongo_calls(self, store, depth, lazy, access_all_block_fields, num_mongo_calls): with store.build() as (source_content, source_store): source_course_key = source_store.make_course_key('a', 'course', 'course') @@ -116,10 +141,20 @@ class CountMongoCallsCourseTraversal(TestCase): # Starting at the root course block, do a breadth-first traversal using # get_children() to retrieve each block's children. with check_mongo_calls(num_mongo_calls): - start_block = source_store.get_course(source_course_key, depth=depth) - stack = [start_block] - while stack: - curr_block = stack.pop() - if curr_block.has_children: - for block in reversed(curr_block.get_children()): - stack.append(block) + with source_store.bulk_operations(source_course_key): + start_block = source_store.get_course(source_course_key, depth=depth, lazy=lazy) + all_blocks = [] + stack = [start_block] + while stack: + curr_block = stack.pop() + all_blocks.append(curr_block) + if curr_block.has_children: + for block in reversed(curr_block.get_children()): + stack.append(block) + + if access_all_block_fields: + # Read the fields on each block in order to ensure each block and its definition is loaded. + for xblock in all_blocks: + for __, field in xblock.fields.iteritems(): + if field.is_set_on(xblock): + __ = field.read_from(xblock) diff --git a/common/lib/xmodule/xmodule/modulestore/tests/test_split_modulestore_bulk_operations.py b/common/lib/xmodule/xmodule/modulestore/tests/test_split_modulestore_bulk_operations.py index cfb9e5aa83..0e7ee14b7b 100644 --- a/common/lib/xmodule/xmodule/modulestore/tests/test_split_modulestore_bulk_operations.py +++ b/common/lib/xmodule/xmodule/modulestore/tests/test_split_modulestore_bulk_operations.py @@ -405,7 +405,12 @@ class TestBulkWriteMixinFindMethods(TestBulkWriteMixin): self.conn.get_definitions.return_value = db_definitions results = self.bulk.get_definitions(self.course_key, search_ids) - self.conn.get_definitions.assert_called_once_with(list(set(search_ids) - set(active_ids))) + definitions_gotten = list(set(search_ids) - set(active_ids)) + if len(definitions_gotten) > 0: + self.conn.get_definitions.assert_called_once_with(definitions_gotten) + else: + # If no definitions to get, then get_definitions() should *not* have been called. + self.assertEquals(self.conn.get_definitions.call_count, 0) for _id in active_ids: if _id in search_ids: self.assertIn(active_definition(_id), results) diff --git a/common/lib/xmodule/xmodule/modulestore/tests/test_xml_importer.py b/common/lib/xmodule/xmodule/modulestore/tests/test_xml_importer.py index a6b227b03b..3adde6d8d2 100644 --- a/common/lib/xmodule/xmodule/modulestore/tests/test_xml_importer.py +++ b/common/lib/xmodule/xmodule/modulestore/tests/test_xml_importer.py @@ -28,7 +28,7 @@ class ModuleStoreNoSettings(unittest.TestCase): COLLECTION = 'modulestore' FS_ROOT = DATA_DIR DEFAULT_CLASS = 'xmodule.modulestore.tests.test_xml_importer.StubXBlock' - RENDER_TEMPLATE = lambda t_n, d, ctx = None, nsp = 'main': '' + RENDER_TEMPLATE = lambda t_n, d, ctx=None, nsp='main': '' modulestore_options = { 'default_class': DEFAULT_CLASS, diff --git a/common/lib/xmodule/xmodule/modulestore/xml.py b/common/lib/xmodule/xmodule/modulestore/xml.py index d92e687fec..cb53668ed8 100644 --- a/common/lib/xmodule/xmodule/modulestore/xml.py +++ b/common/lib/xmodule/xmodule/modulestore/xml.py @@ -706,7 +706,7 @@ class XMLModuleStore(ModuleStoreReadBase): """ return CourseLocator(org, course, run, deprecated=True) - def get_courses(self, depth=0, **kwargs): + def get_courses(self, **kwargs): """ Returns a list of course descriptors. If there were errors on loading, some of these may be ErrorDescriptors instead. diff --git a/common/lib/xmodule/xmodule/modulestore/xml_exporter.py b/common/lib/xmodule/xmodule/modulestore/xml_exporter.py index 3c62f44c32..084f5537c9 100644 --- a/common/lib/xmodule/xmodule/modulestore/xml_exporter.py +++ b/common/lib/xmodule/xmodule/modulestore/xml_exporter.py @@ -41,7 +41,12 @@ def export_to_xml(modulestore, contentstore, course_key, root_dir, course_dir): with modulestore.bulk_operations(course_key): - course = modulestore.get_course(course_key, depth=None) # None means infinite + # depth = None: Traverses down the entire course structure. + # lazy = False: Loads and caches all block definitions during traversal for fast access later + # -and- to eliminate many round-trips to read individual definitions. + # Why these parameters? Because a course export needs to access all the course block information + # eventually. Accessing it all now at the beginning increases performance of the export. + course = modulestore.get_course(course_key, depth=None, lazy=False) fsm = OSFS(root_dir) export_fs = course.runtime.export_fs = fsm.makeopendir(course_dir) root_course_dir = root_dir + '/' + course_dir diff --git a/common/lib/xmodule/xmodule/open_ended_grading_classes/peer_grading_service.py b/common/lib/xmodule/xmodule/open_ended_grading_classes/peer_grading_service.py index da76e1867d..1ad247be74 100644 --- a/common/lib/xmodule/xmodule/open_ended_grading_classes/peer_grading_service.py +++ b/common/lib/xmodule/xmodule/open_ended_grading_classes/peer_grading_service.py @@ -117,13 +117,12 @@ class PeerGradingService(GradingService): return result -""" -This is a mock peer grading service that can be used for unit tests -without making actual service calls to the grading controller -""" - - class MockPeerGradingService(object): + """ + This is a mock peer grading service that can be used for unit tests + without making actual service calls to the grading controller + """ + def get_next_submission(self, problem_location, grader_id): return { 'success': True, diff --git a/common/lib/xmodule/xmodule/tabs.py b/common/lib/xmodule/xmodule/tabs.py index fb0926950a..9020f058f0 100644 --- a/common/lib/xmodule/xmodule/tabs.py +++ b/common/lib/xmodule/xmodule/tabs.py @@ -1,12 +1,6 @@ """ Implement CourseTab """ -# pylint: disable=incomplete-protocol -# Note: pylint complains that we do not implement __delitem__ and __len__, although we implement __setitem__ -# and __getitem__. However, the former two do not apply to the CourseTab class so we do not implement them. -# The reason we implement the latter two is to enable callers to continue to use the CourseTab object with -# dict-type accessors. - from abc import ABCMeta, abstractmethod from xblock.fields import List @@ -15,7 +9,7 @@ from xblock.fields import List _ = lambda text: text -class CourseTab(object): # pylint: disable=incomplete-protocol +class CourseTab(object): """ The Course Tab class is a data abstraction for all tabs (i.e., course navigation links) within a course. It is an abstract class - to be inherited by various tab types. diff --git a/common/lib/xmodule/xmodule/tests/test_error_module.py b/common/lib/xmodule/xmodule/tests/test_error_module.py index 28bc81db55..1b12017fbd 100644 --- a/common/lib/xmodule/xmodule/tests/test_error_module.py +++ b/common/lib/xmodule/xmodule/tests/test_error_module.py @@ -119,8 +119,8 @@ class TestErrorModuleConstruction(unittest.TestCase): """ Test that error module construction happens correctly """ - def setUp(self): + # pylint: disable=abstract-class-instantiated super(TestErrorModuleConstruction, self).setUp() field_data = Mock(spec=FieldData) self.descriptor = BrokenDescriptor( diff --git a/common/static/js/spec/tooltip_manager_spec.js b/common/static/js/spec/tooltip_manager_spec.js index d29d44281d..c4011b1f95 100644 --- a/common/static/js/spec/tooltip_manager_spec.js +++ b/common/static/js/spec/tooltip_manager_spec.js @@ -70,6 +70,17 @@ describe('TooltipManager', function () { expect($('.tooltip')).toBeHidden(); }); + it('can be configured to show when user clicks on the element', function () { + this.element.attr('data-tooltip-show-on-click', true); + this.element.trigger($.Event("click")); + expect($('.tooltip')).toBeVisible(); + }); + + it('can be be triggered manually', function () { + this.tooltip.openTooltip(this.element); + expect($('.tooltip')).toBeVisible(); + }); + it('should moves correctly', function () { showTooltip(this.element); expect($('.tooltip')).toBeVisible(); diff --git a/common/static/js/src/tooltip_manager.js b/common/static/js/src/tooltip_manager.js index 9fd0f14052..83eba8cad3 100644 --- a/common/static/js/src/tooltip_manager.js +++ b/common/static/js/src/tooltip_manager.js @@ -26,7 +26,7 @@ 'mouseover.TooltipManager': this.showTooltip, 'mousemove.TooltipManager': this.moveTooltip, 'mouseout.TooltipManager': this.hideTooltip, - 'click.TooltipManager': this.hideTooltip + 'click.TooltipManager': this.click }, this.SELECTOR); }, @@ -46,17 +46,31 @@ }, showTooltip: function(event) { - var tooltipText = $(event.currentTarget).attr('data-tooltip'); - this.tooltip - .html(tooltipText) - .css(this.getCoords(event.pageX, event.pageY)); - + this.prepareTooltip(event.currentTarget, event.pageX, event.pageY); if (this.tooltipTimer) { clearTimeout(this.tooltipTimer); } this.tooltipTimer = setTimeout(this.show, 500); }, + prepareTooltip: function(element, pageX, pageY) { + pageX = typeof pageX !== 'undefined' ? pageX : element.offset().left + element.width()/2; + pageY = typeof pageY !== 'undefined' ? pageY : element.offset().top + element.height()/2; + var tooltipText = $(element).attr('data-tooltip'); + this.tooltip + .html(tooltipText) + .css(this.getCoords(pageX, pageY)); + }, + + // To manually trigger a tooltip to reveal, other than through user mouse movement: + openTooltip: function(element) { + this.prepareTooltip(element); + this.show(); + if (this.tooltipTimer) { + clearTimeout(this.tooltipTimer); + } + }, + moveTooltip: function(event) { this.tooltip.css(this.getCoords(event.pageX, event.pageY)); }, @@ -68,6 +82,18 @@ this.tooltipTimer = setTimeout(this.hide, 50); }, + click: function(event) { + var showOnClick = !!$(event.currentTarget).data('tooltip-show-on-click'); // Default is false + if (showOnClick) { + this.show(); + if (this.tooltipTimer) { + clearTimeout(this.tooltipTimer); + } + } else { + this.hideTooltip(event); + } + }, + destroy: function () { this.tooltip.remove(); // Unbind all delegated event handlers in the ".TooltipManager" @@ -78,6 +104,6 @@ window.TooltipManager = TooltipManager; $(document).ready(function () { - new TooltipManager(document.body); + window.globalTooltipManager = new TooltipManager(document.body); }); }()); diff --git a/common/templates/edxnotes_wrapper.html b/common/templates/edxnotes_wrapper.html index 4675d4fd59..ac5dc09ab1 100644 --- a/common/templates/edxnotes_wrapper.html +++ b/common/templates/edxnotes_wrapper.html @@ -1,4 +1,5 @@ <%! import json %> +<%! from django.utils.translation import ugettext as _ %> <%! from student.models import anonymous_id_for_user %> <% if user: diff --git a/common/test/acceptance/fixtures/course.py b/common/test/acceptance/fixtures/course.py index b7c61e818c..d837fbb661 100644 --- a/common/test/acceptance/fixtures/course.py +++ b/common/test/acceptance/fixtures/course.py @@ -102,7 +102,7 @@ class CourseFixture(XBlockContainerFixture): between tests, you should use unique course identifiers for each fixture. """ - def __init__(self, org, number, run, display_name, start_date=None, end_date=None): + def __init__(self, org, number, run, display_name, start_date=None, end_date=None, settings=None): """ Configure the course fixture to create a course with @@ -112,6 +112,8 @@ class CourseFixture(XBlockContainerFixture): The default is for the course to have started in the distant past, which is generally what we want for testing so students can enroll. + `settings` can be any additional course settings needs to be enabled. for example + to enable entrance exam settings would be a dict like this {"entrance_exam_enabled": "true"} These have the same meaning as in the Studio restful API /course end-point. """ super(CourseFixture, self).__init__() @@ -134,6 +136,9 @@ class CourseFixture(XBlockContainerFixture): if end_date is not None: self._course_details['end_date'] = end_date.isoformat() + if settings is not None: + self._course_details.update(settings) + self._updates = [] self._handouts = [] self._assets = [] diff --git a/common/test/acceptance/pages/lms/instructor_dashboard.py b/common/test/acceptance/pages/lms/instructor_dashboard.py index 5543359f53..11a8a04e75 100644 --- a/common/test/acceptance/pages/lms/instructor_dashboard.py +++ b/common/test/acceptance/pages/lms/instructor_dashboard.py @@ -37,6 +37,15 @@ class InstructorDashboardPage(CoursePage): data_download_section.wait_for_page() return data_download_section + def select_student_admin(self): + """ + Selects the student admin tab and returns the MembershipSection + """ + self.q(css='a[data-section=student_admin]').first.click() + student_admin_section = StudentAdminPage(self.browser) + student_admin_section.wait_for_page() + return student_admin_section + @staticmethod def get_asset_path(file_name): """ @@ -161,6 +170,11 @@ class MembershipPageCohortManagementSection(PageObject): self._get_cohort_options().filter( lambda el: self._cohort_name(el.text) == cohort_name ).first.click() + # wait for cohort to render as selected on screen + EmptyPromise( + lambda: self.q(css='.title-value').text[0] == cohort_name, + "Waiting to confirm cohort has been selected" + ).fulfill() def add_cohort(self, cohort_name, content_group=None): """ @@ -455,3 +469,126 @@ class DataDownloadPage(PageObject): """ reports = self.q(css="#report-downloads-table .file-download-link>a").map(lambda el: el.text) return reports.results + + +class StudentAdminPage(PageObject): + """ + Student admin section of the Instructor dashboard. + """ + url = None + EE_CONTAINER = ".entrance-exam-grade-container" + + def is_browser_on_page(self): + """ + Confirms student admin section is present + """ + return self.q(css='a[data-section=student_admin].active-section').present + + @property + def student_email_input(self): + """ + Returns email address/username input box. + """ + return self.q(css='{} input[name=entrance-exam-student-select-grade]'.format(self.EE_CONTAINER)) + + @property + def reset_attempts_button(self): + """ + Returns reset student attempts button. + """ + return self.q(css='{} input[name=reset-entrance-exam-attempts]'.format(self.EE_CONTAINER)) + + @property + def rescore_submission_button(self): + """ + Returns rescore student submission button. + """ + return self.q(css='{} input[name=rescore-entrance-exam]'.format(self.EE_CONTAINER)) + + @property + def delete_student_state_button(self): + """ + Returns delete student state button. + """ + return self.q(css='{} input[name=delete-entrance-exam-state]'.format(self.EE_CONTAINER)) + + @property + def background_task_history_button(self): + """ + Returns show background task history for student button. + """ + return self.q(css='{} input[name=entrance-exam-task-history]'.format(self.EE_CONTAINER)) + + @property + def top_notification(self): + """ + Returns show background task history for student button. + """ + return self.q(css='{} .request-response-error'.format(self.EE_CONTAINER)).first + + def is_student_email_input_visible(self): + """ + Returns True if student email address/username input box is present. + """ + return self.student_email_input.is_present() + + def is_reset_attempts_button_visible(self): + """ + Returns True if reset student attempts button is present. + """ + return self.reset_attempts_button.is_present() + + def is_rescore_submission_button_visible(self): + """ + Returns True if rescore student submission button is present. + """ + return self.rescore_submission_button.is_present() + + def is_delete_student_state_button_visible(self): + """ + Returns True if delete student state for entrance exam button is present. + """ + return self.delete_student_state_button.is_present() + + def is_background_task_history_button_visible(self): + """ + Returns True if show background task history for student button is present. + """ + return self.background_task_history_button.is_present() + + def is_background_task_history_table_visible(self): + """ + Returns True if background task history table is present. + """ + return self.q(css='{} .entrance-exam-task-history-table'.format(self.EE_CONTAINER)).is_present() + + def click_reset_attempts_button(self): + """ + clicks reset student attempts button. + """ + return self.reset_attempts_button.click() + + def click_rescore_submissions_button(self): + """ + clicks rescore submissions button. + """ + return self.rescore_submission_button.click() + + def click_delete_student_state_button(self): + """ + clicks delete student state button. + """ + return self.delete_student_state_button.click() + + def click_task_history_button(self): + """ + clicks background task history button. + """ + return self.background_task_history_button.click() + + def set_student_email(self, email_addres): + """ + Sets given email address as value of student email address/username input box. + """ + input_box = self.student_email_input.first.results[0] + input_box.send_keys(email_addres) diff --git a/common/test/acceptance/pages/lms/problem.py b/common/test/acceptance/pages/lms/problem.py index 9e31ada7d2..239dff45de 100644 --- a/common/test/acceptance/pages/lms/problem.py +++ b/common/test/acceptance/pages/lms/problem.py @@ -46,3 +46,19 @@ class ProblemPage(PageObject): Is there a "correct" status showing? """ return self.q(css="div.problem div.capa_inputtype.textline div.correct p.status").is_present() + + def click_clarification(self, index=0): + """ + Click on an inline icon that can be included in problem text using an HTML element: + + Problem clarification text hidden by an icon in rendering Text + """ + self.q(css='div.problem .clarification:nth-child({index}) i[data-tooltip]'.format(index=index + 1)).click() + + @property + def visible_tooltip_text(self): + """ + Get the text seen in any tooltip currently visible on the page. + """ + self.wait_for_element_visibility('body > .tooltip', 'A tooltip is visible.') + return self.q(css='body > .tooltip').text[0] diff --git a/common/test/acceptance/pages/lms/video/video.py b/common/test/acceptance/pages/lms/video/video.py index 0b13dd5f97..37d7251591 100644 --- a/common/test/acceptance/pages/lms/video/video.py +++ b/common/test/acceptance/pages/lms/video/video.py @@ -356,10 +356,6 @@ class VideoPage(PageObject): self.q(css=button_selector).first.click() - button_states = {'play': 'playing', 'pause': 'pause'} - if button in button_states: - self.wait_for_state(button_states[button]) - self.wait_for_ajax() def _get_element_dimensions(self, selector): @@ -677,7 +673,7 @@ class VideoPage(PageObject): elif 'is-ended' in current_state: return 'finished' - def _wait_for(self, check_func, desc, result=False, timeout=200): + def _wait_for(self, check_func, desc, result=False, timeout=200, try_interval=0.2): """ Calls the method provided as an argument until the Promise satisfied or BrokenPromise @@ -689,9 +685,9 @@ class VideoPage(PageObject): """ if result: - return Promise(check_func, desc, timeout=timeout).fulfill() + return Promise(check_func, desc, timeout=timeout, try_interval=try_interval).fulfill() else: - return EmptyPromise(check_func, desc, timeout=timeout).fulfill() + return EmptyPromise(check_func, desc, timeout=timeout, try_interval=try_interval).fulfill() def wait_for_state(self, state): """ diff --git a/common/test/acceptance/pages/studio/settings_group_configurations.py b/common/test/acceptance/pages/studio/settings_group_configurations.py index 8d1f1c40d7..95159c369a 100644 --- a/common/test/acceptance/pages/studio/settings_group_configurations.py +++ b/common/test/acceptance/pages/studio/settings_group_configurations.py @@ -167,8 +167,11 @@ class GroupConfiguration(object): return self.find_css('.actions .delete.is-disabled').present @property - def delete_button_is_absent(self): - return not self.find_css('.actions .delete').present + def delete_button_is_present(self): + """ + Returns whether or not the delete icon is present. + """ + return self.find_css('.actions .delete').present def delete(self): """ diff --git a/common/test/acceptance/tests/discussion/test_cohort_management.py b/common/test/acceptance/tests/discussion/test_cohort_management.py index 07da9bdbfa..2a99c78c20 100644 --- a/common/test/acceptance/tests/discussion/test_cohort_management.py +++ b/common/test/acceptance/tests/discussion/test_cohort_management.py @@ -51,9 +51,9 @@ class CohortConfigurationTest(UniqueCourseTest, CohortTestMixin): ).visit().get_user_id() self.add_user_to_cohort(self.course_fixture, self.student_name, self.manual_cohort_id) - # create a user with unicode characters in their username - self.unicode_student_id = AutoAuthPage( - self.browser, username="Ωπ", email="unicode_student_user@example.com", + # create a second student user + self.other_student_id = AutoAuthPage( + self.browser, username="other_student_user", email="other_student_user@example.com", course_id=self.course_id, staff=False ).visit().get_user_id() @@ -389,12 +389,12 @@ class CohortConfigurationTest(UniqueCourseTest, CohortTestMixin): }).count(), 1 ) - # unicode_student_user (previously unassigned) is added to manual cohort + # other_student_user (previously unassigned) is added to manual cohort self.assertEqual( self.event_collection.find({ "name": "edx.cohort.user_added", "time": {"$gt": start_time}, - "event.user_id": {"$in": [int(self.unicode_student_id)]}, + "event.user_id": {"$in": [int(self.other_student_id)]}, "event.cohort_name": self.manual_cohort_name, }).count(), 1 diff --git a/common/test/acceptance/tests/helpers.py b/common/test/acceptance/tests/helpers.py index 093b149f1e..45ae0ec215 100644 --- a/common/test/acceptance/tests/helpers.py +++ b/common/test/acceptance/tests/helpers.py @@ -13,6 +13,8 @@ from opaque_keys.edx.locator import CourseLocator from xmodule.partitions.partitions import UserPartition from xmodule.partitions.tests.test_partitions import MockUserPartitionScheme from selenium.webdriver.support.select import Select +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC def skip_if_browser(browser): @@ -252,6 +254,15 @@ def assert_event_emitted_num_times(event_collection, event_name, event_time, eve ) +def get_modal_alert(browser): + """ + Returns instance of modal alert box shown in browser after waiting + for 4 seconds + """ + WebDriverWait(browser, 4).until(EC.alert_is_present()) + return browser.switch_to.alert + + class UniqueCourseTest(WebAppTest): """ Test that provides a unique course ID. diff --git a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py index a90f486af6..04256db30e 100644 --- a/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py +++ b/common/test/acceptance/tests/lms/test_lms_instructor_dashboard.py @@ -3,7 +3,8 @@ End-to-end tests for the LMS Instructor Dashboard. """ -from ..helpers import UniqueCourseTest +from ..helpers import UniqueCourseTest, get_modal_alert +from ...pages.common.logout import LogoutPage from ...pages.lms.auto_auth import AutoAuthPage from ...pages.lms.instructor_dashboard import InstructorDashboardPage from ...fixtures.course import CourseFixture @@ -84,3 +85,166 @@ class AutoEnrollmentWithCSVTest(UniqueCourseTest): self.auto_enroll_section.upload_non_csv_file() self.assertTrue(self.auto_enroll_section.is_notification_displayed(section_type=self.auto_enroll_section.NOTIFICATION_ERROR)) self.assertEqual(self.auto_enroll_section.first_notification_message(section_type=self.auto_enroll_section.NOTIFICATION_ERROR), "Make sure that the file you upload is in CSV format with no extraneous characters or rows.") + + +class EntranceExamGradeTest(UniqueCourseTest): + """ + Tests for Entrance exam specific student grading tasks. + """ + + def setUp(self): + super(EntranceExamGradeTest, self).setUp() + self.course_info.update({"settings": {"entrance_exam_enabled": "true"}}) + CourseFixture(**self.course_info).install() + self.student_identifier = "johndoe_saee@example.com" + # Create the user (automatically logs us in) + AutoAuthPage( + self.browser, + username="johndoe_saee", + email=self.student_identifier, + course_id=self.course_id, + staff=False + ).visit() + + LogoutPage(self.browser).visit() + + # login as an instructor + AutoAuthPage(self.browser, course_id=self.course_id, staff=True).visit() + + # go to the student admin page on the instructor dashboard + instructor_dashboard_page = InstructorDashboardPage(self.browser, self.course_id) + instructor_dashboard_page.visit() + self.student_admin_section = instructor_dashboard_page.select_student_admin() + + def test_input_text_and_buttons_are_visible(self): + """ + Scenario: On the Student admin tab of the Instructor Dashboard, Student Email input box, + Reset Student Attempt, Rescore Student Submission, Delete Student State for entrance exam + and Show Background Task History for Student buttons are visible + Given that I am on the Student Admin tab on the Instructor Dashboard + Then I see Student Email input box, Reset Student Attempt, Rescore Student Submission, + Delete Student State for entrance exam and Show Background Task History for Student buttons + """ + self.assertTrue(self.student_admin_section.is_student_email_input_visible()) + self.assertTrue(self.student_admin_section.is_reset_attempts_button_visible()) + self.assertTrue(self.student_admin_section.is_rescore_submission_button_visible()) + self.assertTrue(self.student_admin_section.is_delete_student_state_button_visible()) + self.assertTrue(self.student_admin_section.is_background_task_history_button_visible()) + + def test_clicking_reset_student_attempts_button_without_email_shows_error(self): + """ + Scenario: Clicking on the Reset Student Attempts button without entering student email + address or username results in error. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Reset Student Attempts Button under Entrance Exam Grade + Adjustment without enter an email address + Then I should be shown an Error Notification + And The Notification message should read 'Please enter a student email address or username.' + """ + self.student_admin_section.click_reset_attempts_button() + self.assertEqual( + 'Please enter a student email address or username.', + self.student_admin_section.top_notification.text[0] + ) + + def test_clicking_reset_student_attempts_button_with_success(self): + """ + Scenario: Clicking on the Reset Student Attempts button with valid student email + address or username should result in success prompt. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Reset Student Attempts Button under Entrance Exam Grade + Adjustment after entering a valid student + email address or username + Then I should be shown an alert with success message + """ + self.student_admin_section.set_student_email(self.student_identifier) + self.student_admin_section.click_reset_attempts_button() + alert = get_modal_alert(self.student_admin_section.browser) + alert.dismiss() + + def test_clicking_reset_student_attempts_button_with_error(self): + """ + Scenario: Clicking on the Reset Student Attempts button with email address or username + of a non existing student should result in error message. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Reset Student Attempts Button under Entrance Exam Grade + Adjustment after non existing student email address or username + Then I should be shown an error message + """ + self.student_admin_section.set_student_email('non_existing@example.com') + self.student_admin_section.click_reset_attempts_button() + self.student_admin_section.wait_for_ajax() + self.assertGreater(len(self.student_admin_section.top_notification.text[0]), 0) + + def test_clicking_rescore_submission_button_with_success(self): + """ + Scenario: Clicking on the Rescore Student Submission button with valid student email + address or username should result in success prompt. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Rescore Student Submission Button under Entrance Exam Grade + Adjustment after entering a valid student email address or username + Then I should be shown an alert with success message + """ + self.student_admin_section.set_student_email(self.student_identifier) + self.student_admin_section.click_rescore_submissions_button() + alert = get_modal_alert(self.student_admin_section.browser) + alert.dismiss() + + def test_clicking_rescore_submission_button_with_error(self): + """ + Scenario: Clicking on the Rescore Student Submission button with email address or username + of a non existing student should result in error message. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Rescore Student Submission Button under Entrance Exam Grade + Adjustment after non existing student email address or username + Then I should be shown an error message + """ + self.student_admin_section.set_student_email('non_existing@example.com') + self.student_admin_section.click_rescore_submissions_button() + self.student_admin_section.wait_for_ajax() + self.assertGreater(len(self.student_admin_section.top_notification.text[0]), 0) + + def test_clicking_delete_student_attempts_button_with_success(self): + """ + Scenario: Clicking on the Delete Student State for entrance exam button + with valid student email address or username should result in success prompt. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Delete Student State for entrance exam Button + under Entrance Exam Grade Adjustment after entering a valid student + email address or username + Then I should be shown an alert with success message + """ + self.student_admin_section.set_student_email(self.student_identifier) + self.student_admin_section.click_delete_student_state_button() + alert = get_modal_alert(self.student_admin_section.browser) + alert.dismiss() + + def test_clicking_delete_student_attempts_button_with_error(self): + """ + Scenario: Clicking on the Delete Student State for entrance exam button + with email address or username of a non existing student should result + in error message. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Delete Student State for entrance exam Button + under Entrance Exam Grade Adjustment after non existing student + email address or username + Then I should be shown an error message + """ + self.student_admin_section.set_student_email('non_existing@example.com') + self.student_admin_section.click_delete_student_state_button() + self.student_admin_section.wait_for_ajax() + self.assertGreater(len(self.student_admin_section.top_notification.text[0]), 0) + + def test_clicking_task_history_button_with_success(self): + """ + Scenario: Clicking on the Show Background Task History for Student + with valid student email address or username should result in table of tasks. + Given that I am on the Student Admin tab on the Instructor Dashboard + When I click the Show Background Task History for Student Button + under Entrance Exam Grade Adjustment after entering a valid student + email address or username + Then I should be shown an table listing all background tasks + """ + self.student_admin_section.set_student_email(self.student_identifier) + self.student_admin_section.click_task_history_button() + self.assertTrue(self.student_admin_section.is_background_task_history_table_visible()) diff --git a/common/test/acceptance/tests/lms/test_lms_matlab_problem.py b/common/test/acceptance/tests/lms/test_lms_matlab_problem.py index f62d021bb5..43847c7f7e 100644 --- a/common/test/acceptance/tests/lms/test_lms_matlab_problem.py +++ b/common/test/acceptance/tests/lms/test_lms_matlab_problem.py @@ -1,38 +1,24 @@ # -*- coding: utf-8 -*- """ -End-to-end tests for the LMS. +Test for matlab problems """ import time -from ..helpers import UniqueCourseTest -from ...pages.studio.auto_auth import AutoAuthPage -from ...pages.lms.courseware import CoursewarePage from ...pages.lms.matlab_problem import MatlabProblemPage -from ...fixtures.course import CourseFixture, XBlockFixtureDesc +from ...fixtures.course import XBlockFixtureDesc from ...fixtures.xqueue import XQueueResponseFixture +from .test_lms_problems import ProblemsTest from textwrap import dedent -class MatlabProblemTest(UniqueCourseTest): +class MatlabProblemTest(ProblemsTest): """ Tests that verify matlab problem "Run Code". """ - USERNAME = "STAFF_TESTER" - EMAIL = "johndoe@example.com" - - def setUp(self): - super(MatlabProblemTest, self).setUp() - - self.XQUEUE_GRADE_RESPONSE = None - - self.courseware_page = CoursewarePage(self.browser, self.course_id) - - # Install a course with sections/problems, tabs, updates, and handouts - course_fix = CourseFixture( - self.course_info['org'], self.course_info['number'], - self.course_info['run'], self.course_info['display_name'] - ) - + def get_problem(self): + """ + Create a matlab problem for the test. + """ problem_data = dedent(""" @@ -62,18 +48,7 @@ class MatlabProblemTest(UniqueCourseTest): """) - - course_fix.add_children( - XBlockFixtureDesc('chapter', 'Test Section').add_children( - XBlockFixtureDesc('sequential', 'Test Subsection').add_children( - XBlockFixtureDesc('problem', 'Test Matlab Problem', data=problem_data) - ) - ) - ).install() - - # Auto-auth register for the course. - AutoAuthPage(self.browser, username=self.USERNAME, email=self.EMAIL, - course_id=self.course_id, staff=False).visit() + return XBlockFixtureDesc('problem', 'Test Matlab Problem', data=problem_data) def _goto_matlab_problem_page(self): """ @@ -92,13 +67,13 @@ class MatlabProblemTest(UniqueCourseTest): # Enter a submission, which will trigger a pre-defined response from the XQueue stub. self.submission = "a=1" + self.unique_id[0:5] - self.XQUEUE_GRADE_RESPONSE = {'msg': self.submission} + self.xqueue_grade_response = {'msg': self.submission} matlab_problem_page = self._goto_matlab_problem_page() # Configure the XQueue stub's response for the text we will submit - if self.XQUEUE_GRADE_RESPONSE is not None: - XQueueResponseFixture(self.submission, self.XQUEUE_GRADE_RESPONSE).install() + if self.xqueue_grade_response is not None: + XQueueResponseFixture(self.submission, self.xqueue_grade_response).install() matlab_problem_page.set_response(self.submission) matlab_problem_page.click_run_code() @@ -113,6 +88,6 @@ class MatlabProblemTest(UniqueCourseTest): self.assertEqual(u'', matlab_problem_page.get_grader_msg(".external-grader-message")[0]) self.assertEqual( - self.XQUEUE_GRADE_RESPONSE.get("msg"), + self.xqueue_grade_response.get("msg"), matlab_problem_page.get_grader_msg(".ungraded-matlab-result")[0] ) diff --git a/common/test/acceptance/tests/lms/test_lms_problems.py b/common/test/acceptance/tests/lms/test_lms_problems.py new file mode 100644 index 0000000000..b19f65c10d --- /dev/null +++ b/common/test/acceptance/tests/lms/test_lms_problems.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +""" +Bok choy acceptance tests for problems in the LMS + +See also old lettuce tests in lms/djangoapps/courseware/features/problems.feature +""" +from ..helpers import UniqueCourseTest +from ...pages.studio.auto_auth import AutoAuthPage +from ...pages.lms.courseware import CoursewarePage +from ...pages.lms.problem import ProblemPage +from ...fixtures.course import CourseFixture, XBlockFixtureDesc +from textwrap import dedent + + +class ProblemsTest(UniqueCourseTest): + """ + Base class for tests of problems in the LMS. + """ + USERNAME = "joe_student" + EMAIL = "joe@example.com" + + def setUp(self): + super(ProblemsTest, self).setUp() + + self.xqueue_grade_response = None + + self.courseware_page = CoursewarePage(self.browser, self.course_id) + + # Install a course with a hierarchy and problems + course_fixture = CourseFixture( + self.course_info['org'], self.course_info['number'], + self.course_info['run'], self.course_info['display_name'] + ) + + problem = self.get_problem() + course_fixture.add_children( + XBlockFixtureDesc('chapter', 'Test Section').add_children( + XBlockFixtureDesc('sequential', 'Test Subsection').add_children(problem) + ) + ).install() + + # Auto-auth register for the course. + AutoAuthPage(self.browser, username=self.USERNAME, email=self.EMAIL, + course_id=self.course_id, staff=False).visit() + + def get_problem(self): + """ Subclasses should override this to complete the fixture """ + raise NotImplementedError() + + +class ProblemClarificationTest(ProblemsTest): + """ + Tests the element that can be used in problem XML. + """ + def get_problem(self): + """ + Create a problem with a + """ + xml = dedent(""" + + +

+ Given the data in Table 7 Table 7: "Example PV Installation Costs", + Page 171 of Roberts textbook, compute the ROI + Return on Investment (per year) over 20 years. +

+ + + +
+
+ """) + return XBlockFixtureDesc('problem', 'TOOLTIP TEST PROBLEM', data=xml) + + def test_clarification(self): + """ + Test that we can see the tooltips. + """ + self.courseware_page.visit() + problem_page = ProblemPage(self.browser) + self.assertEqual(problem_page.problem_name, 'TOOLTIP TEST PROBLEM') + problem_page.click_clarification(0) + self.assertIn('"Example PV Installation Costs"', problem_page.visible_tooltip_text) + problem_page.click_clarification(1) + tooltip_text = problem_page.visible_tooltip_text + self.assertIn('Return on Investment', tooltip_text) + self.assertIn('per year', tooltip_text) + self.assertNotIn('strong', tooltip_text) diff --git a/common/test/acceptance/tests/studio/test_studio_library_container.py b/common/test/acceptance/tests/studio/test_studio_library_container.py index d5e0c41cb9..2df45d47f9 100644 --- a/common/test/acceptance/tests/studio/test_studio_library_container.py +++ b/common/test/acceptance/tests/studio/test_studio_library_container.py @@ -3,6 +3,7 @@ Acceptance tests for Library Content in LMS """ import ddt import textwrap +from unittest import skip from .base_studio_test import StudioLibraryTest from ...fixtures.course import CourseFixture @@ -148,6 +149,7 @@ class StudioLibraryContainerTest(StudioLibraryTest, UniqueCourseTest): self.assertTrue(library_container.has_validation_error) self.assertIn(expected_text, library_container.validation_error_text) + @skip("TE-745 StudioLibraryContainerTest test_out_of_date_message fails intemittently") def test_out_of_date_message(self): """ Scenario: Given I have a library, a course and library content xblock in a course diff --git a/common/test/acceptance/tests/studio/test_studio_settings.py b/common/test/acceptance/tests/studio/test_studio_settings.py index b7238cc4c4..aefd5ba1a6 100644 --- a/common/test/acceptance/tests/studio/test_studio_settings.py +++ b/common/test/acceptance/tests/studio/test_studio_settings.py @@ -5,9 +5,15 @@ Acceptance tests for Studio's Setting pages from nose.plugins.attrib import attr from base_studio_test import StudioCourseTest - +from bok_choy.promise import EmptyPromise +from ...fixtures.course import XBlockFixtureDesc +from ..helpers import create_user_partition_json +from ...pages.studio.overview import CourseOutlinePage from ...pages.studio.settings_advanced import AdvancedSettingsPage from ...pages.studio.settings_group_configurations import GroupConfigurationsPage +from unittest import skip +from textwrap import dedent +from xmodule.partitions.partitions import Group @attr('shard_1') @@ -25,6 +31,26 @@ class ContentGroupConfigurationTest(StudioCourseTest): self.course_info['run'] ) + self.outline_page = CourseOutlinePage( + self.browser, + self.course_info['org'], + self.course_info['number'], + self.course_info['run'] + ) + + def populate_course_fixture(self, course_fixture): + """ + Populates test course with chapter, sequential, and 1 problems. + The problem is visible only to Group "alpha". + """ + course_fixture.add_children( + XBlockFixtureDesc('chapter', 'Test Section').add_children( + XBlockFixtureDesc('sequential', 'Test Subsection').add_children( + XBlockFixtureDesc('vertical', 'Test Unit') + ) + ) + ) + def create_and_verify_content_group(self, name, existing_groups): """ Creates a new content group and verifies that it was properly created. @@ -38,7 +64,7 @@ class ContentGroupConfigurationTest(StudioCourseTest): config.name = name # Save the content group self.assertEqual(config.get_text('.action-primary'), "Create") - self.assertTrue(config.delete_button_is_absent) + self.assertFalse(config.delete_button_is_present) config.save() self.assertIn(name, config.name) return config @@ -84,16 +110,68 @@ class ContentGroupConfigurationTest(StudioCourseTest): self.assertIn("Updated Second Content Group", second_config.name) - def test_cannot_delete_content_group(self): + def test_cannot_delete_used_content_group(self): """ - Scenario: Delete is not currently supported for content groups. - Given I have a course without content groups - When I create a content group - Then there is no delete button + Scenario: Ensure that the user cannot delete used content group. + Given I have a course with 1 Content Group + And I go to the Group Configuration page + When I try to delete the Content Group with name "New Content Group" + Then I see the delete button is disabled. + """ + self.course_fixture._update_xblock(self.course_fixture._course_location, { + "metadata": { + u"user_partitions": [ + create_user_partition_json( + 0, + 'Configuration alpha,', + 'Content Group Partition', + [Group("0", 'alpha')], + scheme="cohort" + ) + ], + }, + }) + problem_data = dedent(""" + +

Choose Yes.

+ + + Yes + + +
+ """) + vertical = self.course_fixture.get_nested_xblocks(category="vertical")[0] + self.course_fixture.create_xblock( + vertical.locator, + XBlockFixtureDesc('problem', "VISIBLE TO ALPHA", data=problem_data, metadata={"group_access": {0: [0]}}), + ) + self.group_configurations_page.visit() + config = self.group_configurations_page.content_groups[0] + self.assertTrue(config.delete_button_is_disabled) + + def test_can_delete_unused_content_group(self): + """ + Scenario: Ensure that the user can delete unused content group. + Given I have a course with 1 Content Group + And I go to the Group Configuration page + When I delete the Content Group with name "New Content Group" + Then I see that there is no Content Group + When I refresh the page + Then I see that the content group has been deleted """ self.group_configurations_page.visit() config = self.create_and_verify_content_group("New Content Group", 0) - self.assertTrue(config.delete_button_is_absent) + self.assertTrue(config.delete_button_is_present) + + self.assertEqual(len(self.group_configurations_page.content_groups), 1) + + # Delete content group + config.delete() + self.assertEqual(len(self.group_configurations_page.content_groups), 0) + + self.group_configurations_page.visit() + self.assertEqual(len(self.group_configurations_page.content_groups), 0) def test_must_supply_name(self): """ @@ -129,6 +207,26 @@ class ContentGroupConfigurationTest(StudioCourseTest): config.cancel() self.assertEqual(0, len(self.group_configurations_page.content_groups)) + def test_content_group_empty_usage(self): + """ + Scenario: When content group is not used, ensure that the link to outline page works correctly. + Given I have a course without content group + And I create new content group + Then I see a link to the outline page + When I click on the outline link + Then I see the outline page + """ + self.group_configurations_page.visit() + config = self.create_and_verify_content_group("New Content Group", 0) + config.toggle() + config.click_outline_anchor() + + # Waiting for the page load and verify that we've landed on course outline page + EmptyPromise( + lambda: self.outline_page.is_browser_on_page(), "loaded page {!r}".format(self.outline_page), + timeout=30 + ).fulfill() + @attr('shard_1') class AdvancedSettingsValidationTest(StudioCourseTest): diff --git a/common/test/acceptance/tests/studio/test_studio_split_test.py b/common/test/acceptance/tests/studio/test_studio_split_test.py index 3d8ef20bae..18d10c3390 100644 --- a/common/test/acceptance/tests/studio/test_studio_split_test.py +++ b/common/test/acceptance/tests/studio/test_studio_split_test.py @@ -449,7 +449,7 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin): # Save the configuration self.assertEqual(config.get_text('.action-primary'), "Create") - self.assertTrue(config.delete_button_is_absent) + self.assertFalse(config.delete_button_is_present) config.save() self._assert_fields( diff --git a/common/test/acceptance/tests/test_cohorted_courseware.py b/common/test/acceptance/tests/test_cohorted_courseware.py index b702352a6d..00f42cd14e 100644 --- a/common/test/acceptance/tests/test_cohorted_courseware.py +++ b/common/test/acceptance/tests/test_cohorted_courseware.py @@ -47,7 +47,7 @@ class EndToEndCohortedCoursewareTest(ContainerBase): ).visit() # Create a student who will end up in the default cohort group - self.cohort_default_student_username = "cohort default student" + self.cohort_default_student_username = "cohort_default_student" self.cohort_default_student_email = "cohort_default_student@example.com" StudioAutoAuthPage( self.browser, username=self.cohort_default_student_username, diff --git a/common/test/acceptance/tests/video/test_studio_video_module.py b/common/test/acceptance/tests/video/test_studio_video_module.py index 0cb985e8b5..b069c6fa70 100644 --- a/common/test/acceptance/tests/video/test_studio_video_module.py +++ b/common/test/acceptance/tests/video/test_studio_video_module.py @@ -181,6 +181,7 @@ class CMSVideoTest(CMSVideoBaseTest): self.assertTrue(self.video.is_button_shown('play')) self.video.click_player_button('play') + self.video.wait_for_state('playing') self.assertTrue(self.video.is_button_shown('pause')) def test_youtube_stub_blocks_youtube_api(self): diff --git a/common/test/acceptance/tests/video/test_video_times.py b/common/test/acceptance/tests/video/test_video_times.py index fb88004652..810b042bd4 100644 --- a/common/test/acceptance/tests/video/test_video_times.py +++ b/common/test/acceptance/tests/video/test_video_times.py @@ -3,7 +3,6 @@ Acceptance tests for Video Times(Start, End and Finish) functionality. """ from .test_video_module import VideoBaseTest -from unittest import skip class VideoTimesTest(VideoBaseTest): @@ -33,17 +32,16 @@ class VideoTimesTest(VideoBaseTest): self.assertGreaterEqual(int(self.video.position.split(':')[1]), 10) - @skip("Intermittently fails 1 Oct 2014") def test_video_end_time_with_default_start_time(self): """ Scenario: End time works for Youtube video if starts playing from beginning. - Given we have a video in "Youtube" mode with end time set to 00:00:02 + Given we have a video in "Youtube" mode with end time set to 00:00:05 And I click video button "play" And I wait until video stop playing - Then I see video slider at "0:02" position + Then I see video slider at "0:05" position """ - data = {'end_time': '00:00:02'} + data = {'end_time': '00:00:05'} self.metadata = self.metadata_for_mode('youtube', additional_data=data) # go to video @@ -54,7 +52,7 @@ class VideoTimesTest(VideoBaseTest): # wait until video stop playing self.video.wait_for_state('pause') - self.assertEqual(self.video.position, '0:02') + self.assertIn(self.video.position, ('0:05', '0:06')) def test_video_end_time_wo_default_start_time(self): """ @@ -79,20 +77,19 @@ class VideoTimesTest(VideoBaseTest): # wait until video stop playing self.video.wait_for_state('pause') - self.assertEqual(self.video.position, '1:00') + self.assertIn(self.video.position, ('1:00', '1:01')) - @skip("Intermittently fails 23 Sept 2014") def test_video_start_time_and_end_time(self): """ Scenario: Start time and end time work together for Youtube video. - Given we a video in "Youtube" mode with start time set to 00:00:10 and end_time set to 00:00:12 + Given we a video in "Youtube" mode with start time set to 00:00:10 and end_time set to 00:00:15 And I see video slider at "0:10" position And I click video button "play" Then I wait until video stop playing - Then I see video slider at "0:12" position + Then I see video slider at "0:15" position """ - data = {'start_time': '00:00:10', 'end_time': '00:00:12'} + data = {'start_time': '00:00:10', 'end_time': '00:00:15'} self.metadata = self.metadata_for_mode('youtube', additional_data=data) # go to video @@ -105,13 +102,12 @@ class VideoTimesTest(VideoBaseTest): # wait until video stop playing self.video.wait_for_state('pause') - self.assertEqual(self.video.position, '0:12') + self.assertIn(self.video.position, ('0:15', '0:16')) - @skip("Intermittently fails 03 June 2014") def test_video_end_time_and_finish_time(self): """ Scenario: Youtube video works after pausing at end time and then plays again from End Time to the end. - Given we have a video in "Youtube" mode with start time set to 00:02:14 and end_time set to 00:02:15 + Given we have a video in "Youtube" mode with start time set to 00:02:10 and end_time set to 00:02:15 And I click video button "play" And I wait until video stop playing Then I see video slider at "2:15" position @@ -119,7 +115,7 @@ class VideoTimesTest(VideoBaseTest): And I wait until video stop playing Then I see video slider at "2:20" position """ - data = {'start_time': '00:02:14', 'end_time': '00:02:15'} + data = {'start_time': '00:02:10', 'end_time': '00:02:15'} self.metadata = self.metadata_for_mode('youtube', additional_data=data) # go to video @@ -130,7 +126,7 @@ class VideoTimesTest(VideoBaseTest): # wait until video stop playing self.video.wait_for_state('pause') - self.assertEqual(self.video.position, '2:15') + self.assertIn(self.video.position, ('2:15', '2:16')) self.video.click_player_button('play') @@ -142,14 +138,14 @@ class VideoTimesTest(VideoBaseTest): def test_video_end_time_with_seek(self): """ Scenario: End Time works for Youtube Video if starts playing before Start Time. - Given we have a video in "Youtube" mode with end-time at 0:32 and start-time at 0:30 + Given we have a video in "Youtube" mode with end-time at 0:35 and start-time at 0:30 And I seek video to "0:28" position And I click video button "play" And I wait until video stop playing - Then I see video slider at "0:32" position + Then I see video slider at "0:35" position """ - data = {'start_time': '00:00:30', 'end_time': '00:00:32'} + data = {'start_time': '00:00:30', 'end_time': '00:00:35'} self.metadata = self.metadata_for_mode('youtube', additional_data=data) # go to video @@ -162,7 +158,7 @@ class VideoTimesTest(VideoBaseTest): # wait until video stop playing self.video.wait_for_state('pause') - self.assertEqual(self.video.position, '0:32') + self.assertIn(self.video.position, ('0:35', '0:36')) def test_video_finish_time_with_seek(self): """ diff --git a/common/test/data/uploads/cohort_users_both_columns.csv b/common/test/data/uploads/cohort_users_both_columns.csv index eced3db09d..ee13b56c7c 100644 --- a/common/test/data/uploads/cohort_users_both_columns.csv +++ b/common/test/data/uploads/cohort_users_both_columns.csv @@ -1,4 +1,4 @@ username,email,ignored_column,cohort instructor_user,,June,ManualCohort1 ,student_user@example.com,Spring,AutoCohort1 -Ωπ,,Fall,ManualCohort1 +other_student_user,,Fall,ManualCohort1 diff --git a/common/test/data/uploads/cohort_users_only_email.csv b/common/test/data/uploads/cohort_users_only_email.csv index 7835d455fb..7fb6a85400 100644 --- a/common/test/data/uploads/cohort_users_only_email.csv +++ b/common/test/data/uploads/cohort_users_only_email.csv @@ -1,5 +1,5 @@ email,cohort instructor_user@example.com,ManualCohort1 student_user@example.com,AutoCohort1 -unicode_student_user@example.com,ManualCohort1 +other_student_user@example.com,ManualCohort1 diff --git a/common/test/data/uploads/cohort_users_only_username.csv b/common/test/data/uploads/cohort_users_only_username.csv index 0c7588030a..f33b77a0a2 100644 --- a/common/test/data/uploads/cohort_users_only_username.csv +++ b/common/test/data/uploads/cohort_users_only_username.csv @@ -1,4 +1,4 @@ username,cohort instructor_user,ManualCohort1 student_user,AutoCohort1 -Ωπ,ManualCohort1 \ No newline at end of file +other_student_user,ManualCohort1 diff --git a/conf/locale/am/LC_MESSAGES/django.mo b/conf/locale/am/LC_MESSAGES/django.mo index e8e8a39fad..a0e44f290b 100644 Binary files a/conf/locale/am/LC_MESSAGES/django.mo and b/conf/locale/am/LC_MESSAGES/django.mo differ diff --git a/conf/locale/am/LC_MESSAGES/django.po b/conf/locale/am/LC_MESSAGES/django.po index c773c5d11d..ad646c0dd2 100644 --- a/conf/locale/am/LC_MESSAGES/django.po +++ b/conf/locale/am/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-06-02 13:44+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Amharic (http://www.transifex.com/projects/p/edx-platform/language/am/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/am/LC_MESSAGES/djangojs.mo b/conf/locale/am/LC_MESSAGES/djangojs.mo index afcd0399f6..dde07b1b50 100644 Binary files a/conf/locale/am/LC_MESSAGES/djangojs.mo and b/conf/locale/am/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/am/LC_MESSAGES/djangojs.po b/conf/locale/am/LC_MESSAGES/djangojs.po index fa3a773d13..490a46890d 100644 --- a/conf/locale/am/LC_MESSAGES/djangojs.po +++ b/conf/locale/am/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Amharic (http://www.transifex.com/projects/p/edx-platform/language/am/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ar/LC_MESSAGES/django.mo b/conf/locale/ar/LC_MESSAGES/django.mo index a898eeb177..221b1d021e 100644 Binary files a/conf/locale/ar/LC_MESSAGES/django.mo and b/conf/locale/ar/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ar/LC_MESSAGES/django.po b/conf/locale/ar/LC_MESSAGES/django.po index 493afebecf..ec8f4c257f 100644 --- a/conf/locale/ar/LC_MESSAGES/django.po +++ b/conf/locale/ar/LC_MESSAGES/django.po @@ -124,7 +124,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-02-05 11:21+0000\n" "Last-Translator: Nabeel El-Dughailib \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" @@ -155,7 +155,7 @@ msgstr "ملاحظات" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "المناقشة" @@ -163,7 +163,6 @@ msgstr "المناقشة" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "المسألة " @@ -175,7 +174,6 @@ msgstr "إعدادات متقدّمة" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -207,15 +205,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "الاسم " @@ -314,6 +308,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "يجب أن يتألّف اسم المستخدم من حرفين على الأقلّ" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "يجب إدخال عنوان بريد إلكتروني بصيغة صحيحة" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "يجب إدخال كلمة سر صحيحة" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "يجب أن يتألّف اسمك القانوني من حرفين على الأقلّ" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"يجب ألّا يتألّف اسم المستخدم سوى من أحرف بين A-Z وأرقام بين 0-9، من دون " +"تضمين مسافات. " + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "يجب أن تقبل بشروط الخدمة." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "يجب إدخال المستوى التعليمي" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "يجب إدخال نوع جنسك" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "يجب إدخال سنة ميلادك" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "يجب إدخال عنوانك البريدي" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "يجب إدخال وصف لأهدافك" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "يجب إدخال المدينة" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "يجب إدخال الدولة" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "للتسجيل، يجب عليك اتّباع ميثاق الشرف الأكاديمي." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "لم تقم بتعبئة واحد أو أكثر من الحقول المطلوبة" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "لم يتطابق حقلا كلمة السرّ واسم المستخدم" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "كلمة السر:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -336,7 +408,7 @@ msgstr "أنثى" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "غير ذلك" @@ -398,6 +470,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -528,104 +607,6 @@ msgstr "يوجد مسبقًا حساب يحمل اسم المستخدم العل msgid "An account with the Email '{email}' already exists." msgstr "يوجد مسبقًا حساب يحمل عنوان البريد الإلكتروني '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "نأسف لحدوث خطأ (401 {field}). يُرجى مراسلتنا عبر بريدنا الإلكتروني." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "للتسجيل، يجب عليك اتّباع ميثاق الشرف الأكاديمي." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "يجب أن تقبل بشروط الخدمة." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "يجب أن يتألّف اسم المستخدم من حرفين على الأقلّ" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "يجب إدخال عنوان بريد إلكتروني بصيغة صحيحة" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "يجب أن يتألّف اسمك القانوني من حرفين على الأقلّ" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "يجب إدخال كلمة سر صحيحة" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "يجب قبول شروط الخدمة" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "يجب الموافقة على الالتزام بميثاق الشرف الأكاديمي" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "يجب إدخال المستوى التعليمي" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "يجب إدخال نوع جنسك" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "يجب إدخال سنة ميلادك" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "يجب إدخال عنوانك البريدي" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "يجب إدخال وصف لأهدافك" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "يجب إدخال المدينة" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "يجب إدخال الدولة" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "لم تقم بتعبئة واحد أو أكثر من الحقول المطلوبة" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "لا يمكن أن يتألّف اسم المستخدم من أكثر من {num} أحرف" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "لا يمكن أن يتألّف عنوان البريد الإلكتروني من أكثر من {num} أحرف" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "يجب إدخال عنوان بريد إلكتروني صحيح." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"يجب ألّا يتألّف اسم المستخدم سوى من أحرف بين A-Z وأرقام بين 0-9، من دون " -"تضمين مسافات. " - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "كلمة السر:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "لم يتطابق حقلا كلمة السرّ واسم المستخدم" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "نأسف لتعذّر إمكانية إرسال رسالة تفعيل." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -727,7 +708,7 @@ msgstr "" msgid "Name required" msgstr "يُرجى إدخال الاسم" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "الرقم التعريفي غير صحيح" @@ -1167,7 +1148,7 @@ msgstr "غير صحيح" msgid "incomplete" msgstr "ناقص" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "لا توجد إجابة " @@ -1180,7 +1161,7 @@ msgstr "جاري العمل" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: وسم غير متوقّع {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "جرى تلقّي الإجابة." @@ -1225,7 +1206,7 @@ msgstr "نأسف لحدوث خطأ في تشغيل الرموز." msgid "Cannot connect to the queue" msgstr "عذرًا، لا يمكن الاتصال بقائمة الانتظار." -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "ليس هناك من معادلة محدَّدة." @@ -1233,7 +1214,7 @@ msgstr "ليس هناك من معادلة محدَّدة." msgid "Couldn't parse formula: {error_msg}" msgstr "لم يمكن تحليل المعادلة: {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "نأسف لحدوث خطأ أثناء الإعداد لعملية المعاينة." @@ -1273,13 +1254,11 @@ msgstr "لا يُسمح بتنفيذ رموز غير آمنة بلغة جافا #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "مربّعات الاختيار" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "اختيارات متعدّدة" @@ -1313,13 +1292,11 @@ msgstr "صح أم خطأ" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "القائمة المنسدلة " #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html #, fuzzy msgid "Numerical Input" msgstr "" @@ -1328,7 +1305,7 @@ msgstr "" "#-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-#\n" "مدخلات رقمية" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "عذرًا، حدثت مشكلة في جواب طاقم المساق على هذه المسألة." @@ -1375,7 +1352,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html #, fuzzy msgid "Text Input" msgstr "" @@ -1540,7 +1516,6 @@ msgstr "بيانات XML للملاحظات التوضيحية" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1577,7 +1552,6 @@ msgstr "الملاحظات التوضيحية" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "يظهر هذا الإسم في شريط التصفّح الأفقي في أعلى الصفحة." @@ -1636,7 +1610,6 @@ msgstr "" "تحدِّد هذه القيمة متى يمكن إظهار الإجابة على المسألة. ويمكن تحديد قيمة " "افتراضية من خلال الإعدادات المتقدّمة." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "دائمًا" @@ -1665,7 +1638,6 @@ msgstr "صحيح أو مستحقّ" msgid "Past Due" msgstr "مستحقّ" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "أبدًا" @@ -1816,8 +1788,6 @@ msgstr "إذا استمرّ ظهور هذا الخطأ، يُرجى الاتصا #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "أُغلقت المسألة." @@ -2416,12 +2386,6 @@ msgstr "إنشاء أوّل قسم لمساقك وأيضًا أوّل قسم ف msgid "Use your course outline to build your first Section and Subsection." msgstr "استخدام المخطّط الكلّي لمساقك لبناء أوّل قسم وأوّل قسم فرعي." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "تعديل المخطّط الكلّي للمساق" @@ -2556,9 +2520,6 @@ msgstr "" "ووصف للمساق وغير ذلك. يُرجى صياغة النص الذي سيقرأه الطلّاب قبل اتخاذ قرارهم " "بالتسجيل في مساقك." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "تعديل تفاصيل المساق وجدوله " @@ -2842,7 +2803,6 @@ msgstr "كلاهما" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "لمحة عن" @@ -2930,8 +2890,6 @@ msgstr "" msgid "Text" msgstr "النص" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3586,7 +3544,7 @@ msgid "Wiki" msgstr "الويكي" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "الكتب" @@ -3877,7 +3835,6 @@ msgstr "" " العنوان moocsupport@mathworks.com." #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -4036,7 +3993,6 @@ msgstr "التقييم من قبل الأستاذ " #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "التقييم الآلي" @@ -4088,7 +4044,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "نأسف لحدوث خطأ في الحصول على آراء وملاحظات من المسؤول عن التقييم." @@ -4126,7 +4081,6 @@ msgstr "جاري التقييم " #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "استُكمِل التقييم" @@ -4477,19 +4431,15 @@ msgstr "بحث" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "حقوق الطبع والنشر " -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "اسم المستخدم" @@ -4619,6 +4569,22 @@ msgstr "المستخدم {username} غير موجود." msgid "User {username} has never accessed problem {location}" msgstr "لم يقم المستخدم {username} بفتح المسألة {location} أبداً." +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "خطأ: لم توجد مصادر قابلة لتشغيل الفيديوهات بها! " @@ -4671,7 +4637,6 @@ msgstr "نأسف لتعذّر التغيير إلى الفرع المحدّد. #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "عنوان البريد الإلكتروني" @@ -4736,7 +4701,7 @@ msgstr "جرى تصحيح كلمة السر " msgid "All ok!" msgstr "جرى كل شيء بنجاح!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "يجب إدخال اسم المستخدم" @@ -4805,12 +4770,11 @@ msgstr "العدد الإجمالي للمستخدمين" msgid "Courses loaded in the modulestore" msgstr "جرى تحميل المساقات في مخزن الوحدات" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "اسم المستخدم" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "البريد الإلكتروني" @@ -4881,9 +4845,8 @@ msgstr "نجح التغيير إلى الفرع: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "الأخطاء في المساق {course_name} الذي جرى تحميله
:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html #, fuzzy msgid "Course Name" msgstr "" @@ -4924,7 +4887,7 @@ msgstr "" msgid "Deleted" msgstr "محذوف" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "الرقم التعريفي للمساق " @@ -4960,22 +4923,10 @@ msgstr "" "استيراد مستودع نظام GIT المحدّد والفرع الاختياري إلى مخزن الوحدات والدليل " "المحدّد اختياريًا. " -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "إعادة فتح الموضوع " - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "إغلاق الموضوع" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "لا يمكن ترك العنوان فارغًا " -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "لا يمكن ترك المحتوى فارغًا" @@ -4984,7 +4935,6 @@ msgstr "لا يمكن ترك المحتوى فارغًا" msgid "Topic doesn't exist" msgstr "الموضوع غير موجود" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "مستوى التعليق عميق جدًّا " @@ -5092,12 +5042,9 @@ msgstr "رقم المستخدم" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #, fuzzy msgid "Email" msgstr "" @@ -5229,18 +5176,14 @@ msgstr "نجحت إعادة ضبط تاريخ الاستحقاق للطالب {0 msgid "coupon id is None" msgstr "لا يوجد رقم للقسيمة" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "لا توجد قسيمة تحمل الرقم ({coupon_id})" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "إنّ القسيمة التي تحمل رقم ({coupon_id}) غير مفعّلة من قبل" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "نجح تحديث القسيمة التي تحمل رقم ({coupon_id}) " @@ -5272,7 +5215,6 @@ msgstr "نجحت إضافة القسيمة التي تحمل رمز ({code}) " msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "توجد مسبقًا قسيمة لهذا المساق تحمل رمز ({code}) " -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "نأسف لتعذّر إيجاد رقم القسيمة" @@ -5399,7 +5341,6 @@ msgstr "يُرجى إدخال اسم للواجب " msgid "Invalid assignment name '{name}'" msgstr "اسم غير صالح للواجب '{name}'" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "بريد إلكتروني خارجي" @@ -5468,8 +5409,8 @@ msgstr "الرقم التعريفي" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html #, fuzzy @@ -5530,7 +5471,6 @@ msgstr "يجب أن يتأخّر تاريخ الاستحقاق الممدّد ع msgid "No due date extension is set for that student and unit." msgstr "لم يجرِ تمديد تاريخ الاستحقاق لذلك الطالب وتلك الوحدة." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "تاريخ الاستحقاق الممدّد" @@ -5594,7 +5534,6 @@ msgstr "الاستحداث" msgid "cohorted" msgstr "التوزيع على المجموعات" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "لا تتوفّر معلومات عن الحالة" @@ -5880,7 +5819,6 @@ msgstr "استعراض الأسئلة المفتوحة التي سبق أن قد msgid "View submissions that have been flagged by students as inappropriate." msgstr "استعراض التقديمات التي أشار إليها الطلّاب بعلامة ’غير ملائمة‘." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "تقديمات جديدة لتقييمها" @@ -5934,7 +5872,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -6034,7 +5972,7 @@ msgstr "تبرّع لمنصّة {platform_name}" msgid "Page {page_number} of {page_count}" msgstr "الصفحة {page_number} من أصل {page_count}" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py +#: lms/djangoapps/shoppingcart/pdf.py msgid "Invoice" msgstr "الفاتورة" @@ -6134,7 +6072,6 @@ msgstr "تاريخ استرداد المبلغ" msgid "Amount of Refund" msgstr "المبلغ المستردّ " -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "رسوم الخدمة (إن وجدت)" @@ -6164,12 +6101,10 @@ msgstr "العملة " msgid "Comments" msgstr "التعليقات" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "الجامعة" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "المساق " @@ -6268,7 +6203,7 @@ msgstr "أنت مسجَّل مسبقًا في مساق {course_id}." msgid "Course added to cart." msgstr "أُضيف المساق إلى سلّة التسوّق." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr " لا يتوفّر خصم للرمز '{code}'." @@ -6307,7 +6242,6 @@ msgstr "ليست لديك صلاحية الاطّلاع على محتوى هذه msgid "The payment processor did not return a required parameter: {0}" msgstr "لم يَرجِع معالِج الدفع بمُعطى معيّن مطلوب: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "رجع معالِج الدفع بقيمة مطبوعة بشكل سيّئ {0} للمؤشّر {1}. " @@ -6482,7 +6416,6 @@ msgstr "" "المبلغ المتوفّر في الحساب غير كافٍ. والإجراء التصحيحي الممكن: إعادة محاولة " "الدفع بوسيلة أخرى " -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "سبب غير معروف." @@ -6921,7 +6854,6 @@ msgstr "تأكيد الدفعة" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html #, fuzzy msgid "Take photo" msgstr "" @@ -7033,7 +6965,6 @@ msgstr "الوقت المَقضِيّ:" msgid "Refund Request Time:" msgstr "وقت طلب استرداد المبلغ:" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "استُكملت عملية إعادة ضبط كلمة السر الخاصة بك" @@ -7237,7 +7168,6 @@ msgstr "حذف المقال" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "حذف" @@ -7294,12 +7224,9 @@ msgstr "معاينة" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7319,10 +7246,7 @@ msgstr "معاينة صفحة الويكي" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "النافذة مفتوحة" @@ -7362,7 +7286,7 @@ msgstr "سجل تلقائي:" msgid "Change" msgstr "تغيير" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "دمج اختيارك مع الحالي..." @@ -7374,11 +7298,11 @@ msgstr "التحوّل إلى النسخة المختارة" msgid "Wiki Revision Preview" msgstr "معاينة مراجعة ويكي" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "العودة إلى عرض التاريخ" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "التحوّل إلى هذه النسخة" @@ -7402,7 +7326,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "بعد القيام بهذا، من المهم إجراء مراجعة يدوية." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "إنشاء نسخة مدمجة جديدة" @@ -7649,12 +7573,9 @@ msgstr "لا يمكنك إنشاء مجموعتين يحملان الاسم نف #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "username@domain.com" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "عنوان البريد الإلكتروني الذي استخدمته للتسجيل في {platform_name}" @@ -7664,24 +7585,13 @@ msgstr "عنوان البريد الإلكتروني الذي استخدمته #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "كلمة السر" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" -"يبدو أنّ عنوان البريد الإلكتروني {email_address} واسم المستخدم {username} " -"يخصّان حسابًا قائمًا. يُرجى إعادة المحاولة بعنوان بريد إلكتروني واسم مستخدم " -"مختلفين." - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7763,8 +7673,6 @@ msgstr "يُرجى تحديد بلدك." #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html #, fuzzy msgid "Honor Code" @@ -7786,13 +7694,11 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "شروط الخدمة وميثاق الشرف " -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" "أوافق على شروط الخدمة {terms_of_service} الخاصة بمنصّة {platform_name}. " -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -7804,11 +7710,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "شروط الخدمة" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "الرمز التعريفي الخاص بتحديث المساق غير صحيح." @@ -7937,7 +7841,6 @@ msgstr "" "يوجد من قبل مساق يحمل اسم المؤسّسة ورقم المساق نفسهما. يُرجى تغيير إمّا " "المؤسّسة أو رقم المساق ليكون فريدًا. " -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7970,8 +7873,12 @@ msgid "must have at least one group" msgstr "يجب أن تتوفّر مجموعة واحدة على الأقل." #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." -msgstr "إعدادات المجموعة هذه قيد الاستخدام من قبل ولا يمكن حذفها." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "" #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -8202,8 +8109,7 @@ msgstr "هذه الصفحة غير موجودة" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -8215,13 +8121,8 @@ msgstr "جاري التحميل" msgid "close" msgstr "إغلاق " -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -8241,7 +8142,7 @@ msgstr "رفض العملية" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "الإعدادات" @@ -8250,13 +8151,11 @@ msgstr "الإعدادات" msgid "Error:" msgstr " خطأ:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "المؤسّسة: " -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -8271,10 +8170,8 @@ msgstr "المساقات" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "عنوان البريد الإلكتروني" @@ -8284,7 +8181,7 @@ msgstr "عنوان البريد الإلكتروني" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "مثال: username@domain.com " @@ -8316,14 +8213,13 @@ msgstr "مثال: عبد الحليم حافظ" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "اسم المستخدم العلني" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "مثال: عبد الحليم حافظ" @@ -8337,7 +8233,7 @@ msgid "Requirements" msgstr "المتطلّبات" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "التفاصيل" @@ -8366,13 +8262,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "سياسة الخصوصية" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "المساعدة" @@ -8393,7 +8287,6 @@ msgstr "نأسف لحدوث خطأ ما عند محاولة تسجيلك" msgid "Now choose your course track:" msgstr "والآن اختر رجاءً مسار مساقك:" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "السعي للحصول على شهادة موثّقة" @@ -8485,7 +8378,7 @@ msgstr "جديد" msgid "Dashboard" msgstr "لوحة المعلومات" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "تعديل" @@ -8529,7 +8422,7 @@ msgstr "الارتباط بمواقع أخرى" msgid "Order History" msgstr "تاريخ الطلب" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "إعادة ضبط كلمة السر" @@ -8537,7 +8430,7 @@ msgstr "إعادة ضبط كلمة السر" msgid "Current Courses" msgstr "المساقات الحالية" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "يبدو أنّك لم تسجِّل في أي مساق حتى الآن." @@ -8573,7 +8466,7 @@ msgstr "" "بُعِثت رسالة بريد إلكتروني إلى هذا العنوان {email}. ويُرجى تتبّع الرابط " "الموجود في الرسالة لتغيير كلمة السر." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "تغيير عنوان البريد الإلكتروني" @@ -8630,15 +8523,6 @@ msgstr "تغيير اسمي" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "إلغاء التسجيل " @@ -8704,7 +8588,7 @@ msgstr "الطلّاب الذين رُفِضوا:" msgid "Debug: " msgstr "تصحيح الأخطاء:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "فشلت عملية المصادقة الخارجية" @@ -8741,7 +8625,7 @@ msgstr "مقدَّم " msgid "Puzzle Leaderboard" msgstr "قائمة المتصدِّرين في حلّ اللغز " -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "لمحة عن edX" @@ -8792,13 +8676,11 @@ msgstr "الأخبار" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "معلومات الاتّصال" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "الأسئلة الشائعة" @@ -8820,31 +8702,31 @@ msgstr "تابعونا على:" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "تويتر" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "فيسبوك" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "ميت آب" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "لينكد إن" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "جوجل+" @@ -8861,7 +8743,6 @@ msgid "Android app on Google Play" msgstr "تطبيق أندرويد في متجر جوجل بلاي Google Play" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "الوظائف" @@ -8879,7 +8760,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "تُديره Open edX" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "إعادة ضبط كلمة السر" @@ -8908,7 +8788,7 @@ msgstr "إعادة ضبط كلمة السر الخاصة بي" msgid "Email is incorrect." msgstr "عنوان البريد الإلكتروني غير صحيح" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "المساعدة الخاصة بمنصّة {platform_name}" @@ -8980,8 +8860,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -9131,7 +9009,7 @@ msgstr[5] "" msgid "Helpful Information" msgstr "معلومات مفيدة" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "تسجيل الدخول باستخدام أداة التعريف OpenID" @@ -9331,7 +9209,7 @@ msgstr "البيانات الأوّلية:" msgid "Accepted" msgstr "مقبول" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "خطأ" @@ -9352,17 +9230,15 @@ msgstr "تأكيد" msgid "Reject" msgstr "رفض" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "كيفية العمل" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "إيجاد المساقات" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "المدارس والشركاء" @@ -9382,13 +9258,11 @@ msgstr "تسجيل الخروج" msgid "Shopping Cart" msgstr "سلّة التسوّق" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "تسجيل" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "تسجيل الدخول" @@ -9408,7 +9282,7 @@ msgstr "روابط تصفّح متطابقة في كافة صفحات الموق msgid "Schools" msgstr "المدارس" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "سجِّل الآن" @@ -9476,7 +9350,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "حدثت الأخطاء التالية أثناء معالجة عملية تسجيلك:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9489,7 +9362,6 @@ msgid "Enter a public username:" msgstr "يُرجى إدخال اسم مستخدم علني:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "سيظهر في أي نقاشات أو منتديات تشارك فيها" @@ -9630,11 +9502,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "يُرجى إكمال الحقول التالية للتسجيل وإنشاء حساب." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "مطلوب لأي شهادة قد تنالها " -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "لا يمكن التغيير لاحقًا " @@ -9688,12 +9560,12 @@ msgstr "" "إشعارات المنتدى. يُرجى الضغط {dashboard_link_start}هنا{link_end} للعودة إلى " "لوحة معلوماتك." -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "السابق" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "التالي" @@ -9702,15 +9574,15 @@ msgstr "التالي" msgid "Sign Up for {platform_name}" msgstr "تسجيل العضوية في {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "مثلًا، yourname@domain.com " -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "مثلًا، اسمك (كما يظهر في المنتديات)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr " مثلًا، اسمك (كما سيظهر على الشهادات)" @@ -9812,7 +9684,7 @@ msgstr "حذف حالة الطالب" msgid "Rescore Student Submission" msgstr "إعادة تقييم ورقة الطالب " -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "حقول الوحدة الدراسية" @@ -9868,7 +9740,6 @@ msgstr "التوظيف والتسجيل " #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "سجلّات نظام Git " @@ -9948,6 +9819,18 @@ msgstr "حذف المساق من الموقع" msgid "Platform Version" msgstr "نسخة المنصّة" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9962,6 +9845,11 @@ msgstr "التاريخ " msgid "Git Action" msgstr "عملية Git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -10115,7 +10003,7 @@ msgstr "العودة إلى بداية النص." msgid "Download video" msgstr "تنزيل الفيديو " -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "تنزيل النص" @@ -10131,7 +10019,6 @@ msgstr "كلماتك:" msgid "Total number of words:" msgstr "إجمالي عدد الكلمات:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "فتح الآلة الحاسبة " @@ -10492,8 +10379,6 @@ msgstr "{chapter}، الفصل الحالي " msgid "due {date}" msgstr "تاريخ الاستحقاق {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10555,12 +10440,10 @@ msgstr "لمحة عامة" msgid "Share with friends and family!" msgstr "شارِك ذلك مع الأصدقاء والعائلة!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "إرسال تغريدة حول أنّك سجَّلت في هذا المساق" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "مراسلة شخص ما عبر البريد الإلكتروني لإخباره أنّك سجّلت في هذا المساق " @@ -10616,6 +10499,17 @@ msgstr "" msgid "Additional Resources" msgstr "مصادر إضافية" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "تسجيل" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "مشاهدة هذا المساق كـ:" @@ -10697,8 +10591,8 @@ msgid "No content has been added to this course" msgstr "لم يُضاف أي محتوى إلى هذا المساق بعد" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" -msgstr "تصفّح خدمات المساق" +msgid "Course Utilities" +msgstr "" #: lms/templates/courseware/error-message.html msgid "" @@ -10738,11 +10632,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "استعراض التحديثات في استوديو" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "تحديثات المساق وأخباره" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "تصفّح النشرات " @@ -10750,7 +10644,6 @@ msgstr "تصفّح النشرات " msgid "Course Handouts" msgstr "نشرات المساق" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "لوحة المعلومات الموروثة للأستاذ" @@ -10808,7 +10701,6 @@ msgstr "إدارة المجموعات " msgid "Grade Downloads" msgstr "عمليات تنزيل الدرجات" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10848,7 +10740,6 @@ msgstr "" "يجب أن تتطابق الواجبات المحدّدة لهذا المساق مع تلك المحفَّظة في دفتر " "الدرجات، كي تسير هذه العملية على المسار الصحيح!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "اسم دفتر الدرجات:" @@ -10862,7 +10753,6 @@ msgstr "اسم الواجب:" msgid "Course-specific grade adjustment" msgstr "تعديل الدرجات بحسب المساق " -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10902,7 +10792,6 @@ msgstr "بيانات التسجيل " msgid "Pull enrollment from remote gradebook" msgstr "سحب التسجيل من دفتر الدرجات الخارجي" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "القسم:" @@ -10955,7 +10844,6 @@ msgstr "اليوم " #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "الطلّاب " @@ -11050,7 +10938,6 @@ msgstr "المدّة (ثوانٍ) " msgid "Task Progress" msgstr "سير المهمّة " -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "مجهول" @@ -11138,8 +11025,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "تقدّم عمل الطالب '{username}' ({email}) على المساق" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "تنزيل شهادتك" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -11219,7 +11116,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "جاري إعداد شهادتك {cert_name_short}" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "سيقوم هذا الرابط بفتح/تنزيل وثيقة بصيغة PDF" @@ -11228,24 +11124,6 @@ msgstr "سيقوم هذا الرابط بفتح/تنزيل وثيقة بصيغة msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"بما أنّنا لم نحصل منك على مجموعة مناسبة من الصور الخاصة بالتحقّق من الهوية " -"عندما جرى إعداد شهادتك {cert_name_long}، فلم نستطع منحك شهادة موثّقة من " -"{cert_name_short}، ومنحناك عوضًا عنها شهادة ميثاق شرف {cert_name_short}." - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "تنزيل شهادتك {cert_name_short} (بصيغة ملف PDF)" @@ -11266,11 +11144,28 @@ msgstr "تنزيل شهادتك الموثّقة ببطاقتك الشخصية { msgid "Complete our course feedback survey" msgstr "استكمال استبيان مساقنا حول الآراء والملاحظات" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"بما أنّنا لم نحصل منك على مجموعة مناسبة من الصور الخاصة بالتحقّق من الهوية " +"عندما جرى إعداد شهادتك {cert_name_long}، فلم نستطع منحك شهادة موثّقة من " +"{cert_name_short}، ومنحناك عوضًا عنها شهادة ميثاق شرف {cert_name_short}." + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "صورة الغلاف {course_number} {course_name} " @@ -11279,11 +11174,6 @@ msgstr "صورة الغلاف {course_number} {course_name} " msgid "Your verification is pending" msgstr "عملية التحقّق من هويّتك معلَّقة " -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "مسجَّل كـ: " @@ -11304,7 +11194,6 @@ msgstr "شهادة موثَّقة: عملية التحقّق من هويّة ا msgid "You're enrolled as a verified student" msgstr "أنت مسجَّل كطالب لشهادة موثَّقة" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "شارة الطالب الذي جرى التحقّق من هويّته" @@ -11314,7 +11203,6 @@ msgstr "شارة الطالب الذي جرى التحقّق من هويّته" msgid "Verified" msgstr "موثَّقة" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "أنت مسجَّل كطالب لشهادة ميثاق الشرف" @@ -11377,7 +11265,6 @@ msgstr "ما زال عليك خوض عملية التحقّق لهذا المس msgid "Verify Now" msgstr "إجراء التحقّق الآن" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "سبق أن خضتَ عملية التحقّق من بطاقتك الشخصية! " @@ -11439,32 +11326,23 @@ msgstr "" "الدفعة، أو يمكنك {unenroll_link_start}إلغاء التسجيل{unenroll_link_end} في " "هذا المساق." -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "استعراض المساق المحفوظ في الأرشيف" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "استعراض المساق " -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "هل أنت متأكّد من رغبتك في إلغاء التسجيل في المساق الذي اشتريته" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "هل أنت متأكّد من رغبتك في إلغاء التسجيل في " -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " @@ -11473,12 +11351,10 @@ msgstr "" "هل أنت متأكّد من رغبتك في إلغاء التسجيل في مسار الشهادة الموثَّقة " "{cert_name_long} لـ" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "إعدادات عنوان البريد الإلكتروني " -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11497,7 +11373,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: إعادة عمليّة التحقّق بحلول {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "العمليات المرتبطة بالإشعارات" @@ -11544,7 +11419,6 @@ msgstr "مرفوضة:" msgid "Approved:" msgstr "موافق عليها: " -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "حالة عملية التحقّق من الهوية" @@ -11748,9 +11622,7 @@ msgstr "تعديل منشور " msgid "Edit post title" msgstr "تعديل عنوان المنشور " -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "العنوان" @@ -11762,7 +11634,6 @@ msgstr "تحديث منشور " msgid "Show Comments (%(num_comments)s)" msgstr "إظهار التعليقات (%(num_comments)s)" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "إضافة تعليق " @@ -11783,7 +11654,6 @@ msgstr "مصادقة عليها منذ %(time_ago)s من قِبل %(user)s" msgid "endorsed %(time_ago)s" msgstr "مصادقة عليها منذ %(time_ago)s" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "مبلَّغ عنها" @@ -11954,7 +11824,6 @@ msgstr "أَضِف منشورًا" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "نوع المنشور:" @@ -11975,7 +11844,6 @@ msgstr "" msgid "Topic Area:" msgstr "مجال الموضوع:" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "فلترة المواضيع " @@ -12096,7 +11964,6 @@ msgstr "تخضع المنتديات حاليًّا لأعمال الصيانة. msgid "User Profile" msgstr "الملف الشخصي للمستخدم " -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -12917,8 +12784,6 @@ msgstr "إعطاء علامة تدل على محتوى غير مناسب لتت msgid "Skip" msgstr "تخطي " -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12978,12 +12843,10 @@ msgstr "الاسم الظاهر للمساق:" msgid "Has the course started?" msgstr "هل بدأ المساق؟" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "نعم" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "لا" @@ -13148,7 +13011,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -13296,7 +13158,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -13361,7 +13222,6 @@ msgstr "يرجى إدخال قيمة رقمية للخصم" msgid "Edit Coupon" msgstr "تعديل القسيمة" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "تحديث القسيمة" @@ -13395,9 +13255,6 @@ msgstr "" "معيّن." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -13406,15 +13263,10 @@ msgstr "" " هنا: " #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "عنوان البريد الإلكتروني واسم المستخدم للطالب " -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "اختر الوحدة الخاضعة للتقييم:" @@ -13490,7 +13342,6 @@ msgstr "إنشاء نموذج رموز التسجيل" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "اسم المنظمة" @@ -13608,7 +13459,6 @@ msgstr "تحميل قائمة المسائل... " msgid "Gender Distribution" msgstr "توزيع الجنسين " -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "لوحة المعلومات الخاصة بموجّه المساق" @@ -13621,7 +13471,6 @@ msgstr "العودة إلى لوحة المعلومات الموروثة " msgid "Batch Enrollment" msgstr "التسجيل على دفعات" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -13637,12 +13486,10 @@ msgstr "" "لن تتلقى إشعاراً عن رسائل البريد الإلكتروني التي ترتد ولا يتم استلامها، لذا " "يرجى التحقق جيّداً من عدم وجود أخطاء إملائيّة." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "عناوين البريد الإلكتروني/أسماء المستخدمين" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "التسجيل الآلي " @@ -13670,12 +13517,10 @@ msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" "لا يكون لوضع إشارة في هذا المربّع أي مفعول إذا تمّ اختيار إلغاء \"التسجيل\"." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "إعلام المستخدمين عبر البريد الإلكتروني" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -13684,10 +13529,6 @@ msgstr "" "في حال تم التحقق من هذا الخيار، سيتلقى المستخدمون إشعاراً بالبريد " "الإلكتروني." -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "تسجيل" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -13903,7 +13744,6 @@ msgstr "" "بالإمكان النقر على أيٍّ من المستطيلات للاطلاع على قائمة الطلاب الذين فتحوا " "القسم الفرعي." -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "يمكنك أيضًا تنزيل هذه البيانات بصيغة ملفّ CSV." @@ -13940,12 +13780,10 @@ msgstr "تنزيل الطلاب المسجلين بصيغة CSV" msgid "Download Student Grades as a CSV" msgstr "تنزيل درجات الطلاب بصيغة CSV" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "هذه قائمة جزئية، لعرض جميع الطلاب يرجى التنزيل بصيغة CSV." -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "إرسال بريد إلكتروني" @@ -13958,12 +13796,10 @@ msgstr "إرسال إلى: " msgid "Myself" msgstr "نفسي " -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "الطاقم وموجّهوا المساق" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "الجميع (الطلاب، الطاقم، وموجّهوا المساق) " @@ -14054,7 +13890,6 @@ msgstr "" msgid "Show Email Task History" msgstr "إظهار سجل كافة مهمات البريد الإلكتروني " -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "تحديد سعر وضعية المساق" @@ -14095,19 +13930,16 @@ msgstr "صفحة تطور الطالب " msgid "Student-specific grade adjustment" msgstr "تعديل درجات طالب محدد " -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "قم بتحديد مسألة في المساق هنا مع موقعها الكامل:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "موقع المسألة" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -14488,7 +14320,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -14510,7 +14341,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "email@example.com" @@ -14702,15 +14532,10 @@ msgid " {course_name} " msgstr " {course_name} " #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -14822,7 +14647,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -14848,19 +14672,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -14920,12 +14741,10 @@ msgstr "" "هذه الصفحة متروكة فارغة عمداً. وهي غير مستخدمة من قبل edx.org لكنها متروكة " "هنا للاستخدام المحتمل من قبل تنصيبات Open edX." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "المدونة" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "تبرَّع" @@ -14938,14 +14757,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "الأدوات الخاصة بالوسائط المتعدّدة" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "في الصحافة" @@ -15247,7 +15063,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -15257,19 +15072,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "إعادة التصوير " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "تم بشكلٍ جيد " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "نصائح حول كيفية أخذ صورة ناجحة" @@ -15290,7 +15102,6 @@ msgstr "هل يمكننا مطابقة الصورة التي أخذتها مع #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "عندما تكون في الوضع المناسب، قم باستخدام زر الكاميرا " @@ -15301,19 +15112,16 @@ msgstr "لأخذ صورتك " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "استخدم زر العلامة " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "لدى رضائك عن الصورة التي أخذتها " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "أسئلة شائعة " @@ -15331,7 +15139,6 @@ msgstr "نحتاج صورتك كجزء من عملية التحقق وذلك ل #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "ماذا تفعلون بهذه الصورة؟ " @@ -15411,7 +15218,6 @@ msgstr "الرجاء إتمام عمليات إعادة التحقّق الأخ #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "العودة إلى الموضع الذي تركته" @@ -15427,15 +15233,10 @@ msgstr "أنت حالياً ضمن المسار الخاص بالهويّات ا msgid "You currently need to re-verify for the following courses:" msgstr "يلزمك حالياً القيام بعملية إعادة التحقّق للمساقات التالية:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "يجب القيام بعملية إعادة التحقق قبل تاريخ {date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "إجراء عملية إعادة التحقّق بالنسبة لـ {course_number}" @@ -15682,7 +15483,6 @@ msgid "" "below." msgstr "الرجاء مراجعة الصور والتأكد من مطابقتها المتطلبات المذكورة أدناه. " -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "يجب أن تطابق الصورة أعلاه المتطلبات التالية: " @@ -15695,7 +15495,6 @@ msgstr "أن تكون مضاءة جيداً " msgid "Show your whole face" msgstr "أن تظهر وجهك بالكامل " -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "أن تطابق الصورة على بطاقتك الشخصية صورة وجهك. " @@ -15758,7 +15557,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "العودة إلى لوحة المعلومات" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "لم تنجح عملية إعادة التحقق" @@ -15776,9 +15574,6 @@ msgid "Please contact support if you believe this message to be in error." msgstr "" "الرجاء الاتصال بقسم الدعم إذا كنت تعتقد بحدوث خطأ يتعلق بهذه الرسالة. " -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(مفعّل){span_end}" @@ -15895,8 +15690,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "للاتّصال بفريق الدعم لدى {platform_name}" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "تحميل & الملفات " @@ -15916,8 +15710,7 @@ msgstr "المحتوى" msgid "Page Actions" msgstr "عمليات الصفحة" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "تحميل ملف جديد" @@ -16002,7 +15795,7 @@ msgstr "حُذِف ملفّك." msgid "close alert" msgstr "إغلاق التنبيه" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "قوائم مراجعة المساق" @@ -16041,7 +15834,6 @@ msgid "{studio_name} checklists" msgstr "قوائم التحقّق في {studio_name}" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "نسخة مطابقة" @@ -16054,7 +15846,7 @@ msgid "Delete this component" msgstr "حذف هذا المكوِّن" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "السحب لإعادة الترتيب" @@ -16188,7 +15980,7 @@ msgstr "" "المساق الأساسي.)" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "المؤسّسة" @@ -16198,7 +15990,6 @@ msgstr "المؤسّسة" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "مثلًا: الجامعةX أو المؤسّسةX" @@ -16210,8 +16001,6 @@ msgstr "" "اسم المؤسّسة الراعية للمساق الجديد. (غالبًا ما يكون هذا الاسم هو نفسه اسم " "المؤسّسة الأساسية.)" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "ملاحظة: لا يُسمح باستخدام المسافات أو الرموز الخاصة." @@ -16297,7 +16086,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "تعلّم المزيد عن التشغيلات الثانية للمساق" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "تحديثات المساق" @@ -16315,7 +16104,6 @@ msgstr "" " الضوء على مناقشات معيّنة في المنتديات، والإعلان عن التغييرات المُدخلة على " "الجدول، والردّ على أسئلة الطلّاب. ويمكنك إضافة تحديثات أو تعديلها بلغة HTML." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "المخطّط الكلّي للمساق" @@ -16376,7 +16164,7 @@ msgstr "المشاهدة عبر بثّ مباشر" msgid "Course Start Date:" msgstr "تاريخ بداية المساق:" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "تعديل تاريخ البداية" @@ -16443,8 +16231,8 @@ msgstr "تعلّم المزيد عن المخطّط الكلّي للمساق" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "الصفحات" @@ -16466,11 +16254,11 @@ msgstr "" msgid "Show this page" msgstr "إظهار هذه الصفحة" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "إظهار/إخفاء الصفحة" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "عذرًا، لا يمكن إعادة ترتيب هذه الصفحة." @@ -16544,7 +16332,6 @@ msgstr "" "قبل الكتب والصفحات المخصّصة." #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "إغلاق النموذج " @@ -16596,7 +16383,7 @@ msgstr "" msgid "Back to dashboard" msgstr "العودة إلى لوحة المعلومات" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "تصدير المساق" @@ -16745,8 +16532,7 @@ msgstr "تعلّم المزيد عن تصدير المساقات" msgid "Export Course to Git" msgstr "تصدير المساق إلى Git" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "التصدير إلى Git" @@ -16795,13 +16581,11 @@ msgstr "مساقك:" msgid "Course git url:" msgstr "الرابط لبرنامج git الخاص بالمساق:" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "مجموعات المحتوى" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "ضبط إعدادات المجموعة الخاصّة بالاختبار" @@ -16830,14 +16614,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" -"يُرجى النقر على {em_start}مجموعة محتوى جديدة{em_end} لإضافة مجموعة محتوى. " -"ولتعديل اسم هذه المجموعة، حرِّك الماوس فوق الخانة وانقر على " -"{em_start}تعديل{em_end}. ويُرجى الانتباه إلى أنّه لا يمكن حذف مجموعات " -"المحتوى." #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "تعلّم المزيد" @@ -16893,8 +16678,8 @@ msgid "Course Team" msgstr "فريق المساق" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "الإعدادات المتقدّمة " @@ -16918,7 +16703,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "الخصائص الكثيرة لـ {studio_name}" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "يساعدك {studio_name} على إبقاء مساقاتك منظّمة" @@ -16973,7 +16758,6 @@ msgstr "" "قم ببناء الأقسام لطلّابك وإصدارها تدريجيًّا. فليس عليك أن " "تنشئ المحتوى بأكمله دُفعةً واحدةً." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "التعلّم هو أكثر من مجرّد محاضرات " @@ -17024,7 +16808,7 @@ msgstr "" "برنامج استوديو هو أكثر من مجرّد أسئلة متعدّدة الأجوبة، إذ يقدّم أكثر من عشرة" " أنواع من المسائل لتحدّي قدرات طلّابك. " -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -17145,7 +16929,7 @@ msgstr "" "لن يتمكّن الطلّاب من الوصول إلى هذا المكوِّن. يُرجى إعادة تعديل مكوِّنك " "لتصحيح الخطأ." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "استيراد المساق" @@ -17299,8 +17083,7 @@ msgstr "" "الرابط (أو العقد url_name) لأي مكوِّنات خاصة بالمسائل، فإنّ بيانات الطالب " "المرتبطة بهذه المكوِّنات قد يجري فقدانها، ومن بينها درجات مسائل الطلّاب. " -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "الصفحة الرئيسية لاستوديو {studio_name}" @@ -17316,7 +17099,7 @@ msgstr "مكتبة جديدة" msgid "Email staff to create course" msgstr "مراسلة فريق العمل عبر البريد الإكتروني لإنشاء مساق" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "يُرجى تصحيح الحقول المركَّز عليها أدناه." @@ -17359,7 +17142,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "الرقم الفريد الذي يعرّف عن مساقك في المؤسّسة." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -17371,7 +17154,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "الفترة التي سيجري فيها تشغيل مساقك" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "إنشاء " @@ -17402,7 +17185,7 @@ msgstr "اسم العرض العلني لمكتبتك" msgid "The public organization name for your library." msgstr "اسم المؤسسة العلني لمكتبتك" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "لا يمكن لهذا أن يتغيّر." @@ -17434,7 +17217,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "المساقات الجاري معالجتها" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "تشغيل المساق:" @@ -17486,7 +17269,7 @@ msgstr "" "ستحتاج إلى أن يضيفك \"منشئ المساق\" إلى المساق في {studio_name}. لذا يُرجى " "التواصل معه أو مع المشرف حول المساق المحدّد الذي تساعد على تأليفه. " -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "إنشاء مساقك الأوّل" @@ -17511,7 +17294,7 @@ msgstr "" "منشئ المساق تمنحها المنصّة {platform_name}. وسوف يقيِّم فريقنا طلبك ويزوّدك " "بالملاحظات والآراء في غضون 24 ساعة خلال أسبوع العمل. " -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "حالة الطلب الذي تقدّمت به لتسجيلك كمُنشئ مساق:" @@ -17519,7 +17302,7 @@ msgstr "حالة الطلب الذي تقدّمت به لتسجيلك كمُنش msgid "Request the Ability to Create Courses" msgstr "طلب صلاحية إنشاء المساقات" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "حالة الطلب الذي تقدّمت به لتسجيلك كمُنشئ مساق" @@ -17535,7 +17318,7 @@ msgstr "" "منشئ المساق تمنحها المنصّة {platform_name}. يُرجى ملاحظة أنّ فريقنا قد " "استكمل تقييم طلبك." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "إنّ الطلب الذي تقدّمت به لتسجيلك كمُنشئ مساق:" @@ -17599,7 +17382,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "البدء باستخدام {studio_name}" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "استخدم أداة آرائنا وملاحظاتنا، ’تِندِر‘ Tender، لتطلب المساعدة." @@ -17607,7 +17390,7 @@ msgstr "استخدم أداة آرائنا وملاحظاتنا، ’تِندِ msgid "Request help with {studio_name}" msgstr "طلب المساعدة في استخدام {studio_name}" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "هل يمكنني أن أنشئ مساقات في {studio_name}؟" @@ -17678,7 +17461,7 @@ msgstr "مكتبة المحتويات" msgid "Add Component" msgstr "إضافة مكوِّن " -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "رقم المكتبة" @@ -17745,7 +17528,7 @@ msgstr "اعرف المزيد عن مكتبات المحتوى" msgid "Sign In" msgstr "تسجيل الدخول" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "تسجيل الدخول في {studio_name}" @@ -17803,13 +17586,11 @@ msgstr "" msgid "Add User" msgstr "إضافة مستخدم" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "الدور الحالي:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "أنت!" @@ -18086,7 +17867,6 @@ msgstr "معلومات أساسية" msgid "The nuts and bolts of your course" msgstr "مكوِّنات العمل الأساسية لمساقك" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "عذرًا، لم يعد هذا الحقل مفعّلًا: لا يمكن تغيير هذه المعلومات." @@ -18148,8 +17928,7 @@ msgstr "اليوم الأوّل الذي يبدأ فيه المساق" msgid "Course Start Time" msgstr "وقت بدء المساق" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "(التوقيت العالمي UTC)" @@ -18236,7 +18015,6 @@ msgstr "" "المقدّمات، والمتطلّبات الأساسية، والأسئلة الشائعة التي تُستخدم في %s (منسّقة" " بلغة HTML)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "صورة المساق" @@ -18491,7 +18269,6 @@ msgstr "" "يمكنك أيضًا إنشاء أنواع للواجبات، مثل فروض منزلية، ومختبرات، واختبارات " "موجزة، وامتحانات، كما يمكنك تحديد حصّة كلّ نوع من مجموع درجة الطالب." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "تكبير أو تصغير" @@ -18548,8 +18325,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "تعلّم المزيد عن الكتب." -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "تحميلات الفيديو" @@ -18772,7 +18548,7 @@ msgstr "للاتصال بنا" msgid "Current Course:" msgstr "المساق الحالي:" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "التصفّح لـ {course_name}" @@ -18812,7 +18588,7 @@ msgstr "مكتبة" msgid "Help & Account Navigation" msgstr "المساعدة وتصفّح الحساب " -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "مساعدة سياقية مباشرة" @@ -18832,12 +18608,10 @@ msgstr "دخولك ليس مسجّلاً حاليًّا " msgid "Launch Latex Source Compiler" msgstr "تشغيل مترجم مصادر لاتخ Latex" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "العنوان الرئيسي 1 " -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "الشرح" @@ -18862,7 +18636,7 @@ msgstr "هل تحتاج إلى مساعدة في استخدام {studio_name}؟" msgid "Hide {studio_name} Help" msgstr "إخفاء المساعدة الخاصة بـ {studio_name}" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "التوثيق في {studio_name}" @@ -18883,7 +18657,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "إنشاء وتشغيل ملفّ PDF لمساق على منصّة {platform_name}" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "دعم المؤلّف في {studio_name}" @@ -18932,11 +18706,11 @@ msgstr "" "هذه محتويات أوّلية فقط لمقالك. ويمكنك بعد إنشائه أن تستخدم مزايا أكثر " "تعقيدًا، مثل إضافة برامج مساعدة، أو بيانات وصفية، أو مقالات ذات صلة، الخ. " -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "المحتويات" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "تلخيص" @@ -19313,11 +19087,11 @@ msgstr "عمليات مراجعة الملف المرفق" msgid "%s was successfully added." msgstr "نجحت إضافة %s." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "تَعذَّر حفظ ملفّك: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ar/LC_MESSAGES/djangojs.mo b/conf/locale/ar/LC_MESSAGES/djangojs.mo index 416867562e..c6bbf7b0c5 100644 Binary files a/conf/locale/ar/LC_MESSAGES/djangojs.mo and b/conf/locale/ar/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ar/LC_MESSAGES/djangojs.po b/conf/locale/ar/LC_MESSAGES/djangojs.po index f96ed56edf..bd146fcb80 100644 --- a/conf/locale/ar/LC_MESSAGES/djangojs.po +++ b/conf/locale/ar/LC_MESSAGES/djangojs.po @@ -72,9 +72,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-05 11:21+0000\n" -"Last-Translator: Nabeel El-Dughailib \n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" +"Last-Translator: Sarina Canelake \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -136,8 +135,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "غير معروف " @@ -145,17 +142,14 @@ msgstr "غير معروف " #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "حذف" @@ -261,7 +255,6 @@ msgstr[3] "(%(num_points)s نقطة محتملة)" msgstr[4] "(%(num_points)s نقطة محتملة)" msgstr[5] "(%(num_points)s نقاط محتملة) " -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "الإجابة:" @@ -269,7 +262,6 @@ msgstr "الإجابة:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "إخفاء الإجابة" @@ -290,7 +282,6 @@ msgstr "الإجابة مخفيّة" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "لا توجد إجابة" @@ -309,7 +300,6 @@ msgstr "يتعيّن عليك أن تختار تصنيفًا قبل أن تتم #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "لم يلبِّ مجموع نقاطك المعيار المطلوب للانتقال إلى الخطوة التالية." @@ -380,11 +370,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "إظهار السؤال" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "إخفاء السؤال " @@ -392,7 +380,6 @@ msgstr "إخفاء السؤال " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "فقرة" @@ -403,21 +390,18 @@ msgstr "مُنسَّق مسبقًا" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "العنوان الرئيسي 1 " #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "العنوان الرئيسي 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "العنوان الرئيسي 3" @@ -1295,7 +1279,6 @@ msgstr "إزالة الرابط" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "استبدال الكل" @@ -1309,7 +1292,6 @@ msgstr "استبدال بـ" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1662,18 +1644,14 @@ msgstr "" "\n" "انقر ’إلغاء‘ للعودة إلى هذه الصفحة من دون إرسال معلوماتك." -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1794,7 +1772,6 @@ msgstr "تقنية الدقة العالية مفعّلة حاليًّا " msgid "HD off" msgstr "تقنية الدقة العالية غير مفعّلة حاليًّا " -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "موضع الفيديو" @@ -1853,7 +1830,6 @@ msgstr "جاري التحديث مع مستجدّات محتوى المكتبة" msgid "Creating missing groups" msgstr "جاري إنشاء المجموعات الناقصة`" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "إخفاء النقاش" @@ -1863,13 +1839,9 @@ msgid "Show Discussion" msgstr "إظهار النقاش" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1902,8 +1874,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "نأسف لحدوث مشكلة في معالجة طلبك. يُرجى إعادة المحاولة." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2263,12 +2233,10 @@ msgstr "" "لقد أُزيلت جميع الإبلاغات. للتراجع عن هذه الخطوة، أزل علامة الصح الموجودة في" " مربّع الاختيار." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "سبق وأبلغتَ عن هذه الملاحظة التوضيحية." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "الإبلاغ عن الملاحظة التوضيحية على أنّها مسيئة أو غير مناسبة." @@ -2318,7 +2286,6 @@ msgstr "" "#-#-#-#-# underscore.po (edx-platform) #-#-#-#-#\n" "أكثر" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "ملاحظاتي" @@ -2327,32 +2294,26 @@ msgstr "ملاحظاتي" msgid "Instructor" msgstr "أستاذ المساق" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "عام" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "بحث" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "المستخدمون" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "العلامات" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "نصّ الملاحظة التوضيحية" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2456,7 +2417,6 @@ msgstr "اسم المستخدم" msgid "Email" msgstr "البريد الإلكتروني" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "إلغاء صلاحيات الوصول" @@ -2469,7 +2429,6 @@ msgstr "أدخل اسم المستخدم أو البريد الإكتروني" msgid "Please enter a username or email." msgstr "يُرجى إدخال اسم مستخدم او عنوان بريد إلكتروني." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "نأسف لحدوث خطأ في تغيير صلاحيات المستخدم." @@ -2685,7 +2644,6 @@ msgstr "" msgid "Error sending email." msgstr "نأسف لحدوث خطأ في إرسال الرسالة." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "لا يوجد سجلّ لرسائل البريد الإلكتروني الخاصة بهذا المساق." @@ -2702,10 +2660,6 @@ msgstr "" "نأسف لحدوث خطأ أثناء محاولة الحصول على سجل محتوى رسائل البريد الإلكتروني " "لهذا المساق." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "يُرجى إدخال اسم المستخدم الخاص بالطالب أو عنوان بريده الإلكتروني." @@ -2718,12 +2672,6 @@ msgstr "" "نأسف لحدوث خطأ في الحصول على الرابط الخاصّ بسجل تقدُّم الطالب صاحب الرقم " "’<%= student_id %>‘. يُرجى التحقّق من صحّة رقم الطالب." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "يُرجى إدخال الموقع الخاص بالمسألة." @@ -3009,7 +2957,6 @@ msgstr "دخل النظام في حالة غير صحيحة: <%= state %>" msgid "System got into invalid state for submission: " msgstr "دخل النظام في حالة غير صحيحة بالنسبة لعملية التقديم:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(إخفاء) " @@ -3103,7 +3050,7 @@ msgstr "أدخل وصف الصورة هنا" msgid "enter link description here" msgstr "أدخل وصف الرابط هنا" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "أدخل التعليمات البرمجية هنا" @@ -3175,6 +3122,10 @@ msgstr "" "ستصلك رسالة تأكيد على صندوق بريدك الإلكتروني. يُرجى الضغط على الرابط الوارد " "في الرسالة لتأكيد تغييرك لعنوان البريد الإلكتروني." +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3198,16 +3149,16 @@ msgid "Hide notes" msgstr "إخفاء الملاحظات" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "جاري إظهار الملاحظات" +msgid "Notes visible" +msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "إظهار الملاحظات" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "جاري إخفاء الملاحظات" +msgid "Notes hidden" +msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3406,6 +3357,14 @@ msgstr "عذرًا، لم نتمكّن من ملء لائحة خيارات ال msgid "Saved" msgstr "جرى الحفظ" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "نأسف لحدوث خطأ. يُرجى إعادة المحاولة." @@ -3456,18 +3415,6 @@ msgstr "" "يُرجى التحقّق مجدّدًا من أنّ كاميرا الويب متّصلة بالكمبيوتر وغير معطّلة " "لتتمكّن من المتابعة. " -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "لم يُعثر على الفلاش " - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "لا يبدو أنّ الفلاش مثبّت لديك. " - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "%(a_start)s احصل على فلاش %(a_end)s لتواصل عملية تسجيلك." - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "نجح تحميلك لملف '{file}'. " @@ -3476,7 +3423,6 @@ msgstr "نجح تحميلك لملف '{file}'. " msgid "Your upload of '{file}' failed." msgstr "عذرًا، فشل تحميلك لملف '{file}'. " -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "عذرًا، لا يمكن استرجاع البيانات. يُرجى إعادة المحاولة لاحقًا. " @@ -3527,7 +3473,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "يواجه نظام Studio صعوبة في حفظ عملك " -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3538,7 +3484,6 @@ msgstr "يواجه نظام Studio صعوبة في حفظ عملك " #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "جاري الحفظ" @@ -3645,8 +3590,8 @@ msgstr "نأسف لحدوث خطأ أثناء استيراد المساق الج msgid "Your import has failed." msgstr "عذرًاً، لم تنجح عملية الاستيراد." -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "اختر ملف جديد" @@ -3863,7 +3808,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "يجب تحديد فترة السماح بصيغة HH:MM." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3928,8 +3872,41 @@ msgstr "تحميل ملف جديد" msgid "Load Another File" msgstr "تحميل ملف آخر" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "ليس قيد الاستخدام" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "مستخدم في %(count)s وحدة" +msgstr[1] "مستخدم في %(count)s وحدة" +msgstr[2] "مستخدم في %(count)s وحدة" +msgstr[3] "مستخدم في %(count)s وحدة" +msgstr[4] "مستخدم في %(count)s وحدة" +msgstr[5] "مستخدم في %(count)s وحدة" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "المخطّط الكلّي للمساق" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "مجموعة المحتوى" @@ -3974,22 +3951,6 @@ msgstr[3] "تتضمّن %(count)s مجموعة" msgstr[4] "تتضمّن %(count)s مجموعة" msgstr[5] "تتضمّن %(count)s مجموعة" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "ليس قيد الاستخدام" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "مستخدم في %(count)s وحدة" -msgstr[1] "مستخدم في %(count)s وحدة" -msgstr[2] "مستخدم في %(count)s وحدة" -msgstr[3] "مستخدم في %(count)s وحدة" -msgstr[4] "مستخدم في %(count)s وحدة" -msgstr[5] "مستخدم في %(count)s وحدة" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -4000,11 +3961,6 @@ msgstr "" "إنّ إعدادت هذه المجموعة ليست قيد الاستخدام. ابدأ بإضافة تجربة محتوى إلى أي " "وحدة من خلال %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "المخطّط الكلّي للمساق" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -4087,8 +4043,7 @@ msgstr "تاريخ الإضافة " #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "إظهار %(current_item_range)s من أصل %(total_items_count)s،" @@ -4201,7 +4156,6 @@ msgstr "انشر كلّ التعديلات غير المنشورة لهذه %(it #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore #, fuzzy msgid "Publish" @@ -4245,7 +4199,6 @@ msgstr "جاري إنشاء نسخة مطابقة " msgid "Publishing" msgstr "جاري النشر" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4275,7 +4228,6 @@ msgstr "إخفاء واضح عن الطلّاب" msgid "Inheriting Student Visibility" msgstr "توارُث الإعداد الخاص بتمكين الطلّاب من الرؤية" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "جعله مرئيًّا للطلّاب" @@ -4404,14 +4356,9 @@ msgstr "" msgid "Upload translation" msgstr "تحميل الترجمة" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4527,7 +4474,6 @@ msgstr "" "لا يُضاف الطلّاب إلى هذه المجموعة إلّا عندما تذكر على هذه الصفحة عنوان " "البريد الإلكتروني أو اسم المستخدم لكل واحد منهم. " -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "ماذا يعني هذا؟" @@ -4709,7 +4655,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "عذرًا، لم نتمكّن من تسجيل دخولك. " -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4771,6 +4716,10 @@ msgstr "إنشاء حساب باستخدام" msgid "or create a new one here" msgstr "أو إنشاء حساب جديد هنا" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "أنشئ حسابك" @@ -4963,6 +4912,14 @@ msgstr "" "حالما تضبط وضعية بطاقتك الشخصية، استخدم زر الكاميرا %(icon)s لالتقاط صورة " "لها. " +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "شكرًا لك على العودة لتأكيد هويّتك في: %(courseName)s" @@ -5267,7 +5224,6 @@ msgstr "مهمل" msgid "List of uploaded files and assets in this course" msgstr "قائمة بالملفات وبالمواد الملحقة المحمّلة ضمن هذا المساق" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "- قابل للتصنيف" @@ -5337,6 +5293,20 @@ msgstr "" "تحذير: آخر نسخة منشورة من هذه الوحدة موجودة على الإنترنت، وعندما تنشر " "التغييرات، فإنّك تغيّر تجربة الطالب." +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "الرمز التعريفي" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5347,10 +5317,18 @@ msgstr "رسالة خطأ error.message" msgid "Content Group Name" msgstr "اسم مجموعة المحتوى:" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "هذا هو اسم المجموعة:" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5376,12 +5354,10 @@ msgstr "تغييرات غير منشورة جرى إدخالها على المح msgid "Display Name" msgstr "الاسم الظاهر" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "ضبط الإعدادات" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "سحب لإعادة الترتيب" @@ -5483,7 +5459,6 @@ msgstr "تاريخ الاستحقاق:" msgid "Due Time in UTC:" msgstr "وقت الاستحقاق بحسب التوقيت العالمي UTC:" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "حذف تاريخ استحقاق التقييم" @@ -5555,10 +5530,6 @@ msgstr "التقييم" msgid "Grade as:" msgstr "تقييمه بـ: " -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "الرمز التعريفي" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5696,7 +5667,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "رسالة" @@ -5775,7 +5745,6 @@ msgstr "تاريخ الإصدار:" msgid "Release Time in UTC:" msgstr "وقت الإصدار بحسب التوقيت العالمي UTC:" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "حذف تاريخ/وقت الإصدار" @@ -5841,7 +5810,6 @@ msgstr "" "يُرجى التحقّق من الملاحظات والتعليقات التالية بشأن التحقّق، وتطبيقها على " "الإعدادات الخاصة بمساقك:" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "تعديل الاسم" @@ -5972,15 +5940,9 @@ msgstr "" "تحميل ملف نص جديد بصيغة .srt." #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "تحميل نصّ جديد" @@ -5990,11 +5952,8 @@ msgstr "تحميل نصّ جديد" msgid "Upload New .srt Transcript" msgstr "تحميل نص جديد بصيغة .srt " -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "تنزيل النص لتعديله" @@ -6013,7 +5972,6 @@ msgstr "" "نصًّا على موقع يوتيوب. ويمكنك استيراد نص اليوتيوب أو تحميل ملفّ خاص بك بصيغة" " .srt." -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "استيراد نص من يوتيوب" @@ -6041,8 +5999,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "هل ترغب في استبدال نص EdX بنص يوتيوب؟" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "نعم، الرجاء استبدال نص EdX بنص يوتيوب" @@ -6074,8 +6030,6 @@ msgstr "" "غيّرت رابط الفيديو ولكنّك لم تغيّر ملف النص محدّد التوقيت. هل ترغب في " "استخدام النص محدّد التوقيت الحالي أو تحميل ملف نص جديد بصيغة .srt؟" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "استخدام النص الحالي" diff --git a/conf/locale/az/LC_MESSAGES/django.mo b/conf/locale/az/LC_MESSAGES/django.mo index e96a0d7d61..757666b6e3 100644 Binary files a/conf/locale/az/LC_MESSAGES/django.mo and b/conf/locale/az/LC_MESSAGES/django.mo differ diff --git a/conf/locale/az/LC_MESSAGES/django.po b/conf/locale/az/LC_MESSAGES/django.po index deb12130d0..93a0be7b4a 100644 --- a/conf/locale/az/LC_MESSAGES/django.po +++ b/conf/locale/az/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-04-07 13:46+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/az/LC_MESSAGES/djangojs.mo b/conf/locale/az/LC_MESSAGES/djangojs.mo index 38785a0455..7aaab51450 100644 Binary files a/conf/locale/az/LC_MESSAGES/djangojs.mo and b/conf/locale/az/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/az/LC_MESSAGES/djangojs.po b/conf/locale/az/LC_MESSAGES/djangojs.po index 84c3ec32f4..a4373bbee9 100644 --- a/conf/locale/az/LC_MESSAGES/djangojs.po +++ b/conf/locale/az/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.mo b/conf/locale/bg_BG/LC_MESSAGES/django.mo index d4f01ded6a..1a9041ffeb 100644 Binary files a/conf/locale/bg_BG/LC_MESSAGES/django.mo and b/conf/locale/bg_BG/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.po b/conf/locale/bg_BG/LC_MESSAGES/django.po index 718cdc73e7..dffdb67f2e 100644 --- a/conf/locale/bg_BG/LC_MESSAGES/django.po +++ b/conf/locale/bg_BG/LC_MESSAGES/django.po @@ -44,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" -"PO-Revision-Date: 2014-12-05 16:21+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" +"PO-Revision-Date: 2015-02-18 15:11+0000\n" "Last-Translator: Stoyan Petkov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -83,7 +83,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -95,7 +94,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -122,15 +120,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -224,6 +218,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -244,7 +314,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -301,6 +371,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -411,102 +488,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -567,7 +548,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1001,7 +982,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1014,7 +995,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1053,7 +1034,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1061,7 +1042,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1100,13 +1081,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1138,17 +1117,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1191,7 +1168,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1347,7 +1323,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1379,7 +1354,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1431,7 +1405,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1460,7 +1433,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1601,8 +1573,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2119,12 +2089,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2243,9 +2207,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2483,7 +2444,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2559,8 +2519,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3139,7 +3097,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3391,7 +3349,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3534,7 +3491,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3582,7 +3538,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3620,7 +3575,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3917,19 +3871,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4037,6 +3987,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4085,7 +4051,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4145,7 +4110,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4210,12 +4175,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4278,9 +4242,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4314,7 +4277,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4348,22 +4311,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4372,7 +4323,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4473,12 +4423,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4592,18 +4539,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4634,7 +4577,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4746,7 +4688,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4813,8 +4754,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4868,7 +4809,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4927,7 +4867,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5176,7 +5115,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5226,7 +5164,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5316,8 +5254,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5413,7 +5350,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5443,14 +5379,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5543,7 +5476,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5580,7 +5513,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5710,7 +5642,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6057,7 +5988,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6163,7 +6093,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6345,7 +6274,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6398,12 +6326,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6423,10 +6348,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6463,7 +6385,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6475,11 +6397,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6501,7 +6423,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6729,12 +6651,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6744,21 +6663,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6836,8 +6747,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6849,12 +6758,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6864,11 +6771,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6980,7 +6885,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7010,7 +6914,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7226,8 +7134,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7239,13 +7146,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7265,7 +7167,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7274,13 +7176,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7295,10 +7195,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7308,7 +7206,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7340,14 +7238,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7361,7 +7258,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7388,13 +7285,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7415,7 +7310,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7498,7 +7392,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7542,7 +7436,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7550,7 +7444,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7584,7 +7478,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7635,15 +7529,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7707,7 +7592,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7744,7 +7629,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7787,13 +7672,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7815,31 +7698,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7856,7 +7739,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7872,7 +7754,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7899,7 +7780,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7959,8 +7840,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8097,7 +7976,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8278,7 +8157,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8299,17 +8178,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8329,13 +8206,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8353,7 +8228,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8418,7 +8293,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8429,7 +8303,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8550,11 +8423,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8605,12 +8478,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8619,15 +8492,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8728,7 +8601,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8784,7 +8657,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8862,6 +8734,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8876,6 +8760,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9013,7 +8902,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9029,7 +8918,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9368,8 +9256,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9427,12 +9313,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9486,6 +9370,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9562,7 +9457,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9598,11 +9493,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9610,7 +9505,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9664,7 +9558,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9695,7 +9588,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9709,7 +9601,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9744,7 +9635,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9789,7 +9679,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9880,7 +9769,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9967,7 +9855,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10033,7 +9931,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10042,21 +9939,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10075,11 +9957,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10088,11 +9984,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10113,7 +10004,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10123,7 +10013,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10182,7 +10071,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10236,44 +10124,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10289,7 +10166,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10331,7 +10207,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10529,9 +10404,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10543,7 +10416,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10564,7 +10436,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10729,7 +10600,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10748,7 +10618,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10861,7 +10730,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11585,8 +11453,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11646,12 +11512,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11789,7 +11653,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11937,7 +11800,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12002,7 +11864,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12032,24 +11893,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12117,7 +11970,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12231,7 +12083,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12244,7 +12095,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12256,12 +12106,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12283,22 +12131,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12480,7 +12322,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12515,12 +12356,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12533,12 +12372,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12619,7 +12456,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12658,19 +12494,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13012,7 +12845,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13034,7 +12866,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13219,15 +13050,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13334,7 +13160,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13360,19 +13185,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13427,12 +13249,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13445,14 +13265,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13724,7 +13541,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13732,19 +13548,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13765,7 +13578,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13776,19 +13588,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13806,7 +13615,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13879,7 +13687,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13895,15 +13702,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14127,7 +13929,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14140,7 +13941,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14196,7 +13996,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14211,9 +14010,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14314,8 +14110,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14335,8 +14130,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14406,7 +14200,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14441,7 +14235,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14454,7 +14247,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14577,7 +14370,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14587,7 +14380,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14597,8 +14389,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14673,7 +14463,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14688,7 +14478,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14743,7 +14532,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14802,8 +14591,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14822,11 +14611,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14890,7 +14679,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14932,7 +14720,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15060,8 +14848,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15105,13 +14892,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15134,10 +14919,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15186,8 +14976,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15209,7 +14999,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15254,7 +15044,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15296,7 +15085,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15397,7 +15186,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15528,8 +15317,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15545,7 +15333,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15584,7 +15372,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15594,7 +15382,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15625,7 +15413,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15655,7 +15443,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15700,7 +15488,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15721,7 +15509,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15729,7 +15517,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15741,7 +15529,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15793,7 +15581,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15801,7 +15589,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15861,7 +15649,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15915,7 +15703,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15968,13 +15756,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16213,7 +15999,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16272,8 +16057,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16356,7 +16140,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16582,7 +16365,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16634,8 +16416,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16815,7 +16596,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16855,7 +16636,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16875,12 +16656,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16905,7 +16684,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16921,7 +16700,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16968,11 +16747,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17326,11 +17105,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo b/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo index 253208ced5..672059c09e 100644 Binary files a/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo and b/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po b/conf/locale/bg_BG/LC_MESSAGES/djangojs.po index 79c1224364..147550d24c 100644 --- a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po +++ b/conf/locale/bg_BG/LC_MESSAGES/djangojs.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-16 15:57+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -82,8 +81,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -91,17 +88,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -194,7 +188,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -202,7 +195,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -223,7 +215,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -242,7 +233,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -306,11 +296,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -318,7 +306,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -329,21 +316,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1214,7 +1198,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1228,7 +1211,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1565,18 +1547,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1694,7 +1672,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1741,7 +1718,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1751,13 +1727,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1787,8 +1759,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2088,12 +2058,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2134,7 +2102,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2143,32 +2110,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2269,7 +2230,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2282,7 +2242,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2470,7 +2429,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2483,10 +2441,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2497,12 +2451,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2756,7 +2704,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2850,7 +2797,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2920,6 +2867,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2941,7 +2892,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2949,7 +2900,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3122,6 +3073,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3168,18 +3127,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3188,7 +3135,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3225,7 +3171,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3236,7 +3182,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3335,8 +3280,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3545,7 +3490,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3603,8 +3547,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3645,18 +3618,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3665,11 +3626,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3744,8 +3700,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3850,7 +3805,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3889,7 +3843,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3917,7 +3870,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4032,14 +3984,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4149,7 +4096,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4317,7 +4263,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4375,6 +4320,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4546,6 +4495,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4824,7 +4781,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4892,6 +4848,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4902,10 +4872,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4931,12 +4909,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5036,7 +5012,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5107,10 +5082,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5243,7 +5214,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5322,7 +5292,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5376,7 +5345,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5496,15 +5464,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5514,11 +5476,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5534,7 +5493,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5559,8 +5517,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5587,8 +5543,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.mo b/conf/locale/bn_BD/LC_MESSAGES/django.mo index 9a17b589fd..f05db08836 100644 Binary files a/conf/locale/bn_BD/LC_MESSAGES/django.mo and b/conf/locale/bn_BD/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.po b/conf/locale/bn_BD/LC_MESSAGES/django.po index 050dab00ca..d292c74141 100644 --- a/conf/locale/bn_BD/LC_MESSAGES/django.po +++ b/conf/locale/bn_BD/LC_MESSAGES/django.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-14 10:11+0000\n" "Last-Translator: Tahmid Rafi \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n" @@ -74,7 +74,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -82,7 +82,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -94,7 +93,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -121,15 +119,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -223,6 +217,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -243,7 +313,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -300,6 +370,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -410,102 +487,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -566,7 +547,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1000,7 +981,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1013,7 +994,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1052,7 +1033,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1060,7 +1041,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1099,13 +1080,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1137,17 +1116,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1190,7 +1167,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1346,7 +1322,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1378,7 +1353,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1430,7 +1404,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1459,7 +1432,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1600,8 +1572,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2118,12 +2088,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2242,9 +2206,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2482,7 +2443,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2558,8 +2518,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3138,7 +3096,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3390,7 +3348,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3533,7 +3490,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3581,7 +3537,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3619,7 +3574,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3916,19 +3870,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4036,6 +3986,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4084,7 +4050,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4144,7 +4109,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4209,12 +4174,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4277,9 +4241,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4313,7 +4276,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4347,22 +4310,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4371,7 +4322,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4472,12 +4422,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4591,18 +4538,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4633,7 +4576,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4745,7 +4687,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4812,8 +4753,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4867,7 +4808,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4926,7 +4866,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5175,7 +5114,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5225,7 +5163,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5315,8 +5253,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5412,7 +5349,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5442,14 +5378,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5542,7 +5475,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5579,7 +5512,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5709,7 +5641,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6056,7 +5987,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6162,7 +6092,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6344,7 +6273,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6397,12 +6325,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6422,10 +6347,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6462,7 +6384,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6474,11 +6396,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6500,7 +6422,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6728,12 +6650,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6743,21 +6662,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6835,8 +6746,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6848,12 +6757,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6863,11 +6770,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6979,7 +6884,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7009,7 +6913,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7225,8 +7133,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7238,13 +7145,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7264,7 +7166,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7273,13 +7175,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7294,10 +7194,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7307,7 +7205,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7339,14 +7237,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7360,7 +7257,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7387,13 +7284,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7414,7 +7309,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7497,7 +7391,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7541,7 +7435,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7549,7 +7443,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7583,7 +7477,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7634,15 +7528,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7706,7 +7591,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7743,7 +7628,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7786,13 +7671,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7814,31 +7697,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7855,7 +7738,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7871,7 +7753,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7898,7 +7779,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7958,8 +7839,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8096,7 +7975,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8277,7 +8156,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8298,17 +8177,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8328,13 +8205,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8352,7 +8227,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8417,7 +8292,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8428,7 +8302,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8549,11 +8422,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8604,12 +8477,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8618,15 +8491,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8727,7 +8600,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8783,7 +8656,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8861,6 +8733,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8875,6 +8759,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9012,7 +8901,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9028,7 +8917,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9367,8 +9255,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9426,12 +9312,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9485,6 +9369,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9561,7 +9456,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9597,11 +9492,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9609,7 +9504,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9663,7 +9557,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9694,7 +9587,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9708,7 +9600,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9743,7 +9634,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9788,7 +9678,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9879,7 +9768,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9966,7 +9854,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10032,7 +9930,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10041,21 +9938,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10074,11 +9956,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10087,11 +9983,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10112,7 +10003,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10122,7 +10012,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10181,7 +10070,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10235,44 +10123,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10288,7 +10165,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10330,7 +10206,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10528,9 +10403,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10542,7 +10415,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10563,7 +10435,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10728,7 +10599,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10747,7 +10617,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10860,7 +10729,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11584,8 +11452,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11645,12 +11511,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11788,7 +11652,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11936,7 +11799,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12001,7 +11863,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12031,24 +11892,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12116,7 +11969,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12230,7 +12082,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12243,7 +12094,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12255,12 +12105,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12282,22 +12130,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12479,7 +12321,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12514,12 +12355,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12532,12 +12371,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12618,7 +12455,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12657,19 +12493,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13011,7 +12844,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13033,7 +12865,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13218,15 +13049,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13333,7 +13159,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13359,19 +13184,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13426,12 +13248,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13444,14 +13264,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13723,7 +13540,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13731,19 +13547,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13764,7 +13577,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13775,19 +13587,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13805,7 +13614,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13878,7 +13686,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13894,15 +13701,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14126,7 +13928,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14139,7 +13940,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14195,7 +13995,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14210,9 +14009,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14313,8 +14109,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14334,8 +14129,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14405,7 +14199,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14440,7 +14234,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14453,7 +14246,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14576,7 +14369,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14586,7 +14379,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14596,8 +14388,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14672,7 +14462,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14687,7 +14477,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14742,7 +14531,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14801,8 +14590,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14821,11 +14610,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14889,7 +14678,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14931,7 +14719,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15059,8 +14847,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15104,13 +14891,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15133,10 +14918,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15185,8 +14975,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15208,7 +14998,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15253,7 +15043,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15295,7 +15084,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15396,7 +15185,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15527,8 +15316,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15544,7 +15332,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15583,7 +15371,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15593,7 +15381,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15624,7 +15412,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15654,7 +15442,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15699,7 +15487,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15720,7 +15508,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15728,7 +15516,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15740,7 +15528,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15792,7 +15580,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15800,7 +15588,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15860,7 +15648,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15914,7 +15702,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15967,13 +15755,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16212,7 +15998,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16271,8 +16056,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16355,7 +16139,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16581,7 +16364,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16633,8 +16415,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16814,7 +16595,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16854,7 +16635,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16874,12 +16655,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16904,7 +16683,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16920,7 +16699,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16967,11 +16746,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17325,11 +17104,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo b/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo index 96eaa23e8d..b30c9e1364 100644 Binary files a/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo and b/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po index 2f39eeefc0..278d164d0d 100644 --- a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po +++ b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "এই লিঙ্কটি একটি নতুন ব্রাউ #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -189,7 +183,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -197,7 +190,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -218,7 +210,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -237,7 +228,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -301,11 +291,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -313,7 +301,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -324,21 +311,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1209,7 +1193,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1223,7 +1206,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1560,18 +1542,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1689,7 +1667,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1736,7 +1713,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1746,13 +1722,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1782,8 +1754,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2083,12 +2053,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2129,7 +2097,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2138,32 +2105,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2264,7 +2225,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2277,7 +2237,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2465,7 +2424,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2478,10 +2436,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2492,12 +2446,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2751,7 +2699,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2845,7 +2792,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2915,6 +2862,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2936,7 +2887,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2944,7 +2895,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3117,6 +3068,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3163,18 +3122,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3183,7 +3130,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3220,7 +3166,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3231,7 +3177,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3330,8 +3275,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3540,7 +3485,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3598,8 +3542,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3640,18 +3613,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3660,11 +3621,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3739,8 +3695,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3845,7 +3800,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3884,7 +3838,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3912,7 +3865,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4027,14 +3979,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4144,7 +4091,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4312,7 +4258,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4370,6 +4315,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4541,6 +4490,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4819,7 +4776,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4887,6 +4843,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4897,10 +4867,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4926,12 +4904,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5031,7 +5007,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5102,10 +5077,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5238,7 +5209,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5317,7 +5287,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5371,7 +5340,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5491,15 +5459,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5509,11 +5471,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5529,7 +5488,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5554,8 +5512,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5582,8 +5538,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/bn_IN/LC_MESSAGES/django.mo b/conf/locale/bn_IN/LC_MESSAGES/django.mo index 32b2a88c16..8cbe7a19e6 100644 Binary files a/conf/locale/bn_IN/LC_MESSAGES/django.mo and b/conf/locale/bn_IN/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bn_IN/LC_MESSAGES/django.po b/conf/locale/bn_IN/LC_MESSAGES/django.po index 04e382d55b..08edf2be06 100644 --- a/conf/locale/bn_IN/LC_MESSAGES/django.po +++ b/conf/locale/bn_IN/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo b/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo index 181de0040e..ba0060c0d9 100644 Binary files a/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo and b/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bn_IN/LC_MESSAGES/djangojs.po b/conf/locale/bn_IN/LC_MESSAGES/djangojs.po index 6a8e8de961..e86bc86730 100644 --- a/conf/locale/bn_IN/LC_MESSAGES/djangojs.po +++ b/conf/locale/bn_IN/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2087,12 +2057,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3121,6 +3072,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3167,18 +3126,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3187,7 +3134,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3224,7 +3170,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3235,7 +3181,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3334,8 +3279,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3743,8 +3699,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3849,7 +3804,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3888,7 +3842,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3916,7 +3869,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4031,14 +3983,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4148,7 +4095,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4316,7 +4262,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4374,6 +4319,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4545,6 +4494,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4823,7 +4780,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4891,6 +4847,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4901,10 +4871,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4930,12 +4908,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5035,7 +5011,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5106,10 +5081,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5242,7 +5213,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5321,7 +5291,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5375,7 +5344,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5495,15 +5463,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5513,11 +5475,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5533,7 +5492,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5558,8 +5516,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5586,8 +5542,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/bs/LC_MESSAGES/django.mo b/conf/locale/bs/LC_MESSAGES/django.mo index c39e03f451..1fa16035f5 100644 Binary files a/conf/locale/bs/LC_MESSAGES/django.mo and b/conf/locale/bs/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bs/LC_MESSAGES/django.po b/conf/locale/bs/LC_MESSAGES/django.po index 162d1b3ae4..f5e96acf46 100644 --- a/conf/locale/bs/LC_MESSAGES/django.po +++ b/conf/locale/bs/LC_MESSAGES/django.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: ph8enix \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n" @@ -74,7 +74,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -82,7 +82,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -94,7 +93,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -121,15 +119,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -223,6 +217,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -243,7 +313,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -300,6 +370,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -410,102 +487,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -568,7 +549,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1003,7 +984,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1016,7 +997,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1063,7 +1044,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1102,13 +1083,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1140,17 +1119,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1193,7 +1170,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1349,7 +1325,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1381,7 +1356,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1433,7 +1407,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1462,7 +1435,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1603,8 +1575,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2121,12 +2091,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2245,9 +2209,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2485,7 +2446,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2561,8 +2521,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3143,7 +3101,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3395,7 +3353,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3538,7 +3495,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3586,7 +3542,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3624,7 +3579,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3921,19 +3875,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4042,6 +3992,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4090,7 +4056,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4150,7 +4115,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4215,12 +4180,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4283,9 +4247,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4319,7 +4282,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4353,22 +4316,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4377,7 +4328,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4478,12 +4428,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4597,18 +4544,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4639,7 +4582,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4753,7 +4695,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4820,8 +4761,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4875,7 +4816,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4934,7 +4874,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5183,7 +5122,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5233,7 +5171,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5323,8 +5261,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5420,7 +5357,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5450,14 +5386,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5550,7 +5483,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5587,7 +5520,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5717,7 +5649,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6064,7 +5995,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6170,7 +6100,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6352,7 +6281,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6405,12 +6333,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6430,10 +6355,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6470,7 +6392,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6482,11 +6404,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6508,7 +6430,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6736,12 +6658,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6751,21 +6670,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6843,8 +6754,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6856,12 +6765,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6871,11 +6778,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6987,7 +6892,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7017,7 +6921,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7233,8 +7141,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7246,13 +7153,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7272,7 +7174,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7281,13 +7183,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7302,10 +7202,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7315,7 +7213,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7347,14 +7245,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7368,7 +7265,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7395,13 +7292,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7422,7 +7317,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7505,7 +7399,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7549,7 +7443,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7557,7 +7451,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7591,7 +7485,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7642,15 +7536,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7714,7 +7599,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7751,7 +7636,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7794,13 +7679,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7822,31 +7705,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7863,7 +7746,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7879,7 +7761,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7906,7 +7787,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7966,8 +7847,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8105,7 +7984,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8286,7 +8165,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8307,17 +8186,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8337,13 +8214,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8361,7 +8236,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8426,7 +8301,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8437,7 +8311,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8558,11 +8431,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8613,12 +8486,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8627,15 +8500,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8736,7 +8609,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8792,7 +8665,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8870,6 +8742,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8884,6 +8768,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9021,7 +8910,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9037,7 +8926,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9378,8 +9266,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9437,12 +9323,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9496,6 +9380,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9572,7 +9467,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9608,11 +9503,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9620,7 +9515,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9674,7 +9568,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9705,7 +9598,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9719,7 +9611,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9754,7 +9645,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9799,7 +9689,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9890,7 +9779,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9977,7 +9865,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10043,7 +9941,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10052,21 +9949,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10085,11 +9967,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10098,11 +9994,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10123,7 +10014,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10133,7 +10023,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10193,7 +10082,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10247,44 +10135,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10300,7 +10177,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10342,7 +10218,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10540,9 +10415,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10554,7 +10427,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10575,7 +10447,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10740,7 +10611,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10759,7 +10629,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10874,7 +10743,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11598,8 +11466,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11659,12 +11525,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11802,7 +11666,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11950,7 +11813,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12015,7 +11877,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12045,24 +11906,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12130,7 +11983,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12244,7 +12096,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12257,7 +12108,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12269,12 +12119,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12296,22 +12144,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12493,7 +12335,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12528,12 +12369,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12546,12 +12385,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12632,7 +12469,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12671,19 +12507,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13025,7 +12858,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13047,7 +12879,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13233,15 +13064,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13348,7 +13174,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13374,19 +13199,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13441,12 +13263,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13459,14 +13279,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13738,7 +13555,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13746,19 +13562,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13779,7 +13592,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13790,19 +13602,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13820,7 +13629,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13893,7 +13701,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13909,15 +13716,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14141,7 +13943,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14154,7 +13955,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14210,7 +14010,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14225,9 +14024,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14328,8 +14124,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14349,8 +14144,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14420,7 +14214,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14455,7 +14249,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14468,7 +14261,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14591,7 +14384,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14601,7 +14394,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14611,8 +14403,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14687,7 +14477,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14702,7 +14492,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14757,7 +14546,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14816,8 +14605,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14836,11 +14625,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14904,7 +14693,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14946,7 +14734,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15074,8 +14862,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15119,13 +14906,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15148,10 +14933,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15200,8 +14990,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15223,7 +15013,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15268,7 +15058,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15310,7 +15099,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15411,7 +15200,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15542,8 +15331,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15559,7 +15347,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15598,7 +15386,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15608,7 +15396,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15639,7 +15427,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15669,7 +15457,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15714,7 +15502,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15743,7 +15531,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15755,7 +15543,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15807,7 +15595,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15815,7 +15603,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15875,7 +15663,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15929,7 +15717,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15982,13 +15770,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16227,7 +16013,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16286,8 +16071,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16370,7 +16154,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16596,7 +16379,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16648,8 +16430,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16829,7 +16610,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16869,7 +16650,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16889,12 +16670,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16919,7 +16698,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16935,7 +16714,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16982,11 +16761,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17340,11 +17119,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/bs/LC_MESSAGES/djangojs.mo b/conf/locale/bs/LC_MESSAGES/djangojs.mo index 25c6fd81a5..ae51b606c9 100644 Binary files a/conf/locale/bs/LC_MESSAGES/djangojs.mo and b/conf/locale/bs/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bs/LC_MESSAGES/djangojs.po b/conf/locale/bs/LC_MESSAGES/djangojs.po index 6b919582f8..5c43bd3950 100644 --- a/conf/locale/bs/LC_MESSAGES/djangojs.po +++ b/conf/locale/bs/LC_MESSAGES/djangojs.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -82,8 +81,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -91,17 +88,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -196,7 +190,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -204,7 +197,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -225,7 +217,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -244,7 +235,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -308,11 +298,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -320,7 +308,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -331,21 +318,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1216,7 +1200,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1230,7 +1213,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1567,18 +1549,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1696,7 +1674,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1746,7 +1723,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1756,13 +1732,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1792,8 +1764,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2106,12 +2076,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2153,7 +2121,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2162,32 +2129,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2288,7 +2249,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2301,7 +2261,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2489,7 +2448,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2502,10 +2460,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2516,12 +2470,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2775,7 +2723,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2869,7 +2816,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2939,6 +2886,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2960,7 +2911,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2968,7 +2919,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3146,6 +3097,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3192,18 +3151,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3212,7 +3159,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3252,7 +3198,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3263,7 +3209,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3362,8 +3307,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3572,7 +3517,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3630,8 +3574,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3673,19 +3647,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3694,11 +3655,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3773,8 +3729,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3879,7 +3834,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3918,7 +3872,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3946,7 +3899,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4061,14 +4013,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4179,7 +4126,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4347,7 +4293,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4405,6 +4350,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4576,6 +4525,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4854,7 +4811,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4922,6 +4878,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4932,10 +4902,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4961,12 +4939,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5066,7 +5042,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5137,10 +5112,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5273,7 +5244,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5352,7 +5322,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5406,7 +5375,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5526,15 +5494,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5544,11 +5506,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5564,7 +5523,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5589,8 +5547,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5617,8 +5573,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ca/LC_MESSAGES/django.mo b/conf/locale/ca/LC_MESSAGES/django.mo index e042798fd7..5d7a979312 100644 Binary files a/conf/locale/ca/LC_MESSAGES/django.mo and b/conf/locale/ca/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ca/LC_MESSAGES/django.po b/conf/locale/ca/LC_MESSAGES/django.po index 1b7e3bcafa..6e7907cfce 100644 --- a/conf/locale/ca/LC_MESSAGES/django.po +++ b/conf/locale/ca/LC_MESSAGES/django.po @@ -49,7 +49,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: mcolomer \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" @@ -80,7 +80,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -88,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -100,7 +99,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -127,15 +125,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nom" @@ -228,6 +222,83 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"El nom d'usuari només pot contenir els caràcters A-Z i 0-9, sense espais." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Has d'acceptar els termes del servei." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Per inscriure't has de seguir el codi d'honor." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -248,7 +319,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -305,6 +376,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -417,103 +495,6 @@ msgstr "Ja existeix un compte amb el nom d'usuari públic '{username}'." msgid "An account with the Email '{email}' already exists." msgstr "Ja existeix un compte amb l'email '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Error (401 {field}). Envia'ns un email." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Per inscriure't has de seguir el codi d'honor." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Has d'acceptar els termes del servei." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Es requereix un email vàlid." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"El nom d'usuari només pot contenir els caràcters A-Z i 0-9, sense espais." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "No s'ha pogut enviar l'email d'activació." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -575,7 +556,7 @@ msgstr "" msgid "Name required" msgstr "Es requereix un nom" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID invàlid" @@ -1009,7 +990,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "no respostes" @@ -1022,7 +1003,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1061,7 +1042,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1069,7 +1050,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1108,13 +1089,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1146,17 +1125,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1199,7 +1176,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1355,7 +1331,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1387,7 +1362,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1437,7 +1411,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1466,7 +1439,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1607,8 +1579,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2123,12 +2093,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2247,9 +2211,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2487,7 +2448,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2563,8 +2523,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3143,7 +3101,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3395,7 +3353,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3538,7 +3495,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3586,7 +3542,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3626,7 +3581,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3923,19 +3877,15 @@ msgstr "Cerca" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Nom d'usuari" @@ -4043,6 +3993,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ERROR: no s'han trobat fonts de vídeo visibles!" @@ -4091,7 +4057,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4151,7 +4116,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4216,12 +4181,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4284,9 +4248,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4320,7 +4283,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4354,22 +4317,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4378,7 +4329,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4481,12 +4431,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Email" @@ -4600,18 +4547,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4642,7 +4585,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4754,7 +4696,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4821,8 +4762,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4876,7 +4817,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4935,7 +4875,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5194,7 +5133,6 @@ msgstr "" "Veure els submissions que han estat bandejades pels estudiants com a " "inapropiades." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Noves submissions per avaluar" @@ -5248,7 +5186,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5338,8 +5276,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5435,7 +5372,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5465,14 +5401,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5565,7 +5498,7 @@ msgstr "" msgid "Course added to cart." msgstr "Curs afegit a la cistella." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5602,7 +5535,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "El processedor de pagament no retorna un paràmetre obligatori: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5744,7 +5676,6 @@ msgstr "" "Fons insuficients en el compte. Pot tornar-ho a provar mitjançant una altra " "forma de pagament." -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Raó desconeguda" @@ -6103,7 +6034,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6209,7 +6139,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "S'ha restablert la teva contrasenya" @@ -6407,7 +6336,6 @@ msgstr "Esborrar article" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Esborrar" @@ -6464,12 +6392,9 @@ msgstr "Previsualitzar" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6489,10 +6414,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6533,7 +6455,7 @@ msgstr "Auto diari:" msgid "Change" msgstr "Canviar" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Combinar la seleccionada amb l'actual" @@ -6545,11 +6467,11 @@ msgstr "Canviar a la versió seleccionada" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Torna a la vista d'històric" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Canvia a aquesta versió" @@ -6574,7 +6496,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Després d'això és important fer una revisió manual." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Crea una nova versió combinada" @@ -6813,12 +6735,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6828,21 +6747,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6920,8 +6831,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6933,12 +6842,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6948,11 +6855,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Id d'actualització de curs invàlid" @@ -7078,7 +6983,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7112,7 +7016,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7331,8 +7239,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7344,13 +7251,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7370,7 +7272,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Configuració" @@ -7379,13 +7281,11 @@ msgstr "Configuració" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7400,10 +7300,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7413,7 +7311,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7445,14 +7343,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7466,7 +7363,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7493,13 +7390,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ajuda" @@ -7520,7 +7415,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7603,7 +7497,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7647,7 +7541,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7655,7 +7549,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7689,7 +7583,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7740,15 +7634,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7812,7 +7697,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7849,7 +7734,7 @@ msgstr "Enviat" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7892,13 +7777,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contacte" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7920,31 +7803,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7961,7 +7844,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7977,7 +7859,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -8004,7 +7885,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -8064,8 +7945,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8202,7 +8081,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8383,7 +8262,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8404,17 +8283,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8434,13 +8311,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8458,7 +8333,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8523,7 +8398,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8534,7 +8408,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8655,11 +8528,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8710,12 +8583,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8724,15 +8597,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8833,7 +8706,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8889,7 +8762,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8967,6 +8839,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8981,6 +8865,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9118,7 +9007,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9134,7 +9023,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Obrir la calculadora" @@ -9473,8 +9361,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9532,12 +9418,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9591,6 +9475,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9667,7 +9562,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9703,11 +9598,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9715,7 +9610,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9769,7 +9663,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9800,7 +9693,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9814,7 +9706,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9849,7 +9740,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9894,7 +9784,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9985,7 +9874,6 @@ msgstr "Durada (segons)" msgid "Task Progress" msgstr "Progrés de tasca" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10072,7 +9960,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10138,7 +10036,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10147,21 +10044,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10180,11 +10062,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10193,11 +10089,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10218,7 +10109,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10228,7 +10118,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10287,7 +10176,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10341,44 +10229,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10394,7 +10271,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10436,7 +10312,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10634,9 +10509,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Títol" @@ -10648,7 +10521,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10669,7 +10541,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10834,7 +10705,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10853,7 +10723,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10966,7 +10835,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -11690,8 +11558,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11751,12 +11617,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11894,7 +11758,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12042,7 +11905,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12107,7 +11969,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12137,24 +11998,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12222,7 +12075,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12336,7 +12188,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12349,7 +12200,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12361,12 +12211,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12388,22 +12236,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12585,7 +12427,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12620,12 +12461,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12638,12 +12477,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12724,7 +12561,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12763,19 +12599,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13121,7 +12954,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13143,7 +12975,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13328,15 +13159,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13443,7 +13269,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13469,19 +13294,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13536,12 +13358,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13554,14 +13374,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13833,7 +13650,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13841,19 +13657,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13874,7 +13687,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13885,19 +13697,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13915,7 +13724,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13988,7 +13796,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14004,15 +13811,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14236,7 +14038,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14249,7 +14050,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14305,7 +14105,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14320,9 +14119,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14428,8 +14224,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14449,8 +14244,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14520,7 +14314,7 @@ msgstr "El teu fitxer s'ha esborrat." msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14555,7 +14349,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14568,7 +14361,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14691,7 +14484,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14701,7 +14494,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14711,8 +14503,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14787,7 +14577,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14802,7 +14592,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14857,7 +14646,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14916,8 +14705,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14936,11 +14725,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15004,7 +14793,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15046,7 +14834,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15174,8 +14962,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15219,13 +15006,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15248,10 +15033,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15300,8 +15090,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15323,7 +15113,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15368,7 +15158,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15410,7 +15199,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15511,7 +15300,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15642,8 +15431,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15659,7 +15447,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15698,7 +15486,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15708,7 +15496,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15739,7 +15527,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15769,7 +15557,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15814,7 +15602,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15835,7 +15623,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15843,7 +15631,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15855,7 +15643,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15907,7 +15695,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15915,7 +15703,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15975,7 +15763,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16029,7 +15817,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16082,13 +15870,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16327,7 +16113,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16386,8 +16171,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16470,7 +16254,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16696,7 +16479,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16748,8 +16530,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16929,7 +16710,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16969,7 +16750,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16989,12 +16770,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17019,7 +16798,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17035,7 +16814,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17086,11 +16865,11 @@ msgstr "" "pots utilitzar característiques més complexes com afegir plugins, meta " "dades, articles relacionats, etc..." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Contingut" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Resum" @@ -17476,11 +17255,11 @@ msgstr "revisions dels adjunts" msgid "%s was successfully added." msgstr "%s correctament afegit." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "El teu fitxer no s'ha pogut guardar: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.mo b/conf/locale/ca/LC_MESSAGES/djangojs.mo index cd8ac63722..093f4bdddc 100644 Binary files a/conf/locale/ca/LC_MESSAGES/djangojs.mo and b/conf/locale/ca/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.po b/conf/locale/ca/LC_MESSAGES/djangojs.po index 297118e57c..1fdf35ceb3 100644 --- a/conf/locale/ca/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -75,8 +74,6 @@ msgstr "Aquest enllaç s'obrirà en una nova finestra/pestanya del navegador" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -84,17 +81,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -185,7 +179,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s punt possible)" msgstr[1] "(%(num_points)s punts possibles)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Resposta:" @@ -193,7 +186,6 @@ msgstr "Resposta:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Ocultar resposta" @@ -214,7 +206,6 @@ msgstr "Resposta oculta" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "no respostes" @@ -233,7 +224,6 @@ msgstr "Necessites seleccionar una valoració abans d'enviar la sol·licitud." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "La teva puntuació no compleix els criteris per anar al següent pas." @@ -308,11 +298,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Mostrar pregunta" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Ocultar pregunta" @@ -320,7 +308,6 @@ msgstr "Ocultar pregunta" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -331,21 +318,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1214,7 +1198,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1228,7 +1211,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1565,18 +1547,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1694,7 +1672,6 @@ msgstr "HD activat" msgid "HD off" msgstr "HD desactivat" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Posició del vídeo" @@ -1741,7 +1718,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Ocultar discussió" @@ -1751,13 +1727,9 @@ msgid "Show Discussion" msgstr "Mostrar discussió" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1794,8 +1766,6 @@ msgstr "" "de nou." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2105,12 +2075,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2151,7 +2119,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2160,32 +2127,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2288,7 +2249,6 @@ msgstr "Nom d'usuari" msgid "Email" msgstr "Email" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Revocar l'accés" @@ -2301,7 +2261,6 @@ msgstr "Entra el nom d'usuari o email" msgid "Please enter a username or email." msgstr "Si us plau, entra el nom d'usuari o email." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Error canviant els permisos d'usuari." @@ -2518,7 +2477,6 @@ msgstr "" msgid "Error sending email." msgstr "Error enviant email." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "No hi ha històric d'emails per aquest curs." @@ -2532,10 +2490,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Si us plau entra una adreça d'email d'estudiant o nom d'usuari." @@ -2546,12 +2500,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2823,7 +2771,6 @@ msgstr "El sistema ha obtingut un estat invàlid: <%= state %>" msgid "System got into invalid state for submission: " msgstr "El sistema ha obtingut un estat invàlid per a la sol·licitud:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Ocultar)" @@ -2917,7 +2864,7 @@ msgstr "entreu aquí la descripció de la imatge" msgid "enter link description here" msgstr "entra aquí la descripció de l'enllaç" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "entra el codi aquí" @@ -2987,6 +2934,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3008,7 +2959,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3016,7 +2967,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3189,6 +3140,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3235,18 +3194,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3255,7 +3202,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3295,7 +3241,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "L'Studio té problemes guardant la teva feina." -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3306,7 +3252,6 @@ msgstr "L'Studio té problemes guardant la teva feina." #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Guardant" @@ -3405,8 +3350,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3620,7 +3565,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "El període de gràcia ha de tenir el format HH:MM." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3681,8 +3625,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3723,18 +3696,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3743,11 +3704,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3822,8 +3778,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3929,7 +3884,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3968,7 +3922,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3996,7 +3949,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4119,14 +4071,9 @@ msgstr "" msgid "Upload translation" msgstr "Pujar traducció" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4236,7 +4183,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4404,7 +4350,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4462,6 +4407,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4633,6 +4582,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4911,7 +4868,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4979,6 +4935,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4989,10 +4959,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5018,12 +4996,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5123,7 +5099,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5194,10 +5169,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5330,7 +5301,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5409,7 +5379,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5463,7 +5432,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5583,15 +5551,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5601,11 +5563,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5621,7 +5580,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5646,8 +5604,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5674,8 +5630,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.mo b/conf/locale/ca@valencia/LC_MESSAGES/django.mo index a06894577b..40c489d20d 100644 Binary files a/conf/locale/ca@valencia/LC_MESSAGES/django.mo and b/conf/locale/ca@valencia/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.po b/conf/locale/ca@valencia/LC_MESSAGES/django.po index eab4ee831f..3d238b7909 100644 --- a/conf/locale/ca@valencia/LC_MESSAGES/django.po +++ b/conf/locale/ca@valencia/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-12 14:59+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo index 18177b7425..a62ceddb2b 100644 Binary files a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo and b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po index 8b37ce5160..a510797906 100644 --- a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2087,12 +2057,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3121,6 +3072,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3167,18 +3126,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3187,7 +3134,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3224,7 +3170,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3235,7 +3181,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3334,8 +3279,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3743,8 +3699,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3849,7 +3804,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3888,7 +3842,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3916,7 +3869,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4031,14 +3983,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4148,7 +4095,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4316,7 +4262,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4374,6 +4319,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4545,6 +4494,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4823,7 +4780,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4891,6 +4847,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4901,10 +4871,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4930,12 +4908,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5035,7 +5011,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5106,10 +5081,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5242,7 +5213,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5321,7 +5291,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5375,7 +5344,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5495,15 +5463,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5513,11 +5475,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5533,7 +5492,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5558,8 +5516,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5586,8 +5542,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/cs/LC_MESSAGES/django.mo b/conf/locale/cs/LC_MESSAGES/django.mo index 9f834acfb8..cde6202d68 100644 Binary files a/conf/locale/cs/LC_MESSAGES/django.mo and b/conf/locale/cs/LC_MESSAGES/django.mo differ diff --git a/conf/locale/cs/LC_MESSAGES/django.po b/conf/locale/cs/LC_MESSAGES/django.po index fc49beed2a..f50a002c97 100644 --- a/conf/locale/cs/LC_MESSAGES/django.po +++ b/conf/locale/cs/LC_MESSAGES/django.po @@ -56,7 +56,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-10-27 15:11+0000\n" "Last-Translator: TomHermanek \n" "Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n" @@ -87,7 +87,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -95,7 +95,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -107,7 +106,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -134,15 +132,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -236,6 +230,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -256,7 +326,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -313,6 +383,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -423,102 +500,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -581,7 +562,7 @@ msgstr "" msgid "Name required" msgstr "Jméno je vyžadováno" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Neplatné ID" @@ -1016,7 +997,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1029,7 +1010,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1068,7 +1049,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1076,7 +1057,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1115,13 +1096,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1153,17 +1132,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1206,7 +1183,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1362,7 +1338,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1394,7 +1369,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1446,7 +1420,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1475,7 +1448,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1616,8 +1588,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2134,12 +2104,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2258,9 +2222,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2498,7 +2459,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2574,8 +2534,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3156,7 +3114,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3408,7 +3366,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3551,7 +3508,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3599,7 +3555,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3637,7 +3592,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3936,15 +3890,12 @@ msgstr "" msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4053,6 +4004,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4101,7 +4068,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4161,7 +4127,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4226,12 +4192,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4294,9 +4259,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4330,7 +4294,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4364,22 +4328,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4388,7 +4340,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4489,12 +4440,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4608,18 +4556,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4650,7 +4594,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4764,7 +4707,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4831,8 +4773,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4886,7 +4828,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4944,7 +4885,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5193,7 +5133,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5243,7 +5182,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5333,8 +5272,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5430,7 +5368,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5460,14 +5397,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5560,7 +5494,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5597,7 +5531,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5727,7 +5660,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6074,7 +6006,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6180,7 +6111,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6362,7 +6292,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6415,12 +6344,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6440,10 +6366,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6480,7 +6403,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6492,11 +6415,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6518,7 +6441,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6745,12 +6668,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6760,21 +6680,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6852,8 +6764,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6865,12 +6775,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6880,11 +6788,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6996,7 +6902,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7026,7 +6931,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7242,8 +7151,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7255,13 +7163,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7281,7 +7184,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7290,13 +7193,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7311,10 +7212,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7324,7 +7223,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7356,14 +7255,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7377,7 +7275,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7404,13 +7302,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7431,7 +7327,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7514,7 +7409,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7558,7 +7453,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7566,7 +7461,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7600,7 +7495,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7651,15 +7546,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7723,7 +7609,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7760,7 +7646,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7803,13 +7689,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7831,31 +7715,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7872,7 +7756,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7888,7 +7771,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7915,7 +7797,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7975,8 +7857,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8114,7 +7994,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8295,7 +8175,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8316,17 +8196,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8346,13 +8224,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8370,7 +8246,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8435,7 +8311,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8446,7 +8321,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8567,11 +8441,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8622,12 +8496,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8636,15 +8510,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8745,7 +8619,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8801,7 +8675,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8879,6 +8752,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8893,6 +8778,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9030,7 +8920,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9046,7 +8936,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9387,8 +9276,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9446,12 +9333,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9505,6 +9390,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9581,7 +9477,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9617,11 +9513,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9629,7 +9525,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9683,7 +9578,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9714,7 +9608,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9728,7 +9621,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9763,7 +9655,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9808,7 +9699,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9899,7 +9789,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9986,7 +9875,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10052,7 +9951,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10061,21 +9959,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10094,11 +9977,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10107,11 +10004,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10132,7 +10024,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10142,7 +10033,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10202,7 +10092,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10256,44 +10145,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10309,7 +10187,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10351,7 +10228,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10549,9 +10425,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10563,7 +10437,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10584,7 +10457,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10749,7 +10621,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10768,7 +10639,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10883,7 +10753,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11607,8 +11476,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11668,12 +11535,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11811,7 +11676,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11959,7 +11823,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12024,7 +11887,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12054,24 +11916,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12139,7 +11993,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12253,7 +12106,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12266,7 +12118,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12278,12 +12129,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12305,22 +12154,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12502,7 +12345,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12537,12 +12379,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12555,12 +12395,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12641,7 +12479,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12680,19 +12517,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13034,7 +12868,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13056,7 +12889,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13242,15 +13074,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13357,7 +13184,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13383,19 +13209,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13450,12 +13273,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13468,14 +13289,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13747,7 +13565,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13755,19 +13572,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13788,7 +13602,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13799,19 +13612,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13829,7 +13639,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13902,7 +13711,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13918,15 +13726,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14150,7 +13953,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14163,7 +13965,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14219,7 +14020,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14234,9 +14034,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14337,8 +14134,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14358,8 +14154,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14429,7 +14224,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14464,7 +14259,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14477,7 +14271,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14600,7 +14394,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14610,7 +14404,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14620,8 +14413,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14696,7 +14487,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14711,7 +14502,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14766,7 +14556,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14825,8 +14615,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14845,11 +14635,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14913,7 +14703,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14955,7 +14744,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15083,8 +14872,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15128,13 +14916,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15157,10 +14943,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15209,8 +15000,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15232,7 +15023,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15277,7 +15068,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15319,7 +15109,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15420,7 +15210,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15551,8 +15341,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15568,7 +15357,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15607,7 +15396,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15617,7 +15406,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15648,7 +15437,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15678,7 +15467,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15723,7 +15512,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15744,7 +15533,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15752,7 +15541,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15764,7 +15553,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15816,7 +15605,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15824,7 +15613,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15884,7 +15673,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15938,7 +15727,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15991,13 +15780,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16236,7 +16023,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16295,8 +16081,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16379,7 +16164,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16605,7 +16389,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16657,8 +16440,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16838,7 +16620,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16878,7 +16660,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16898,12 +16680,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16928,7 +16708,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16944,7 +16724,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16991,11 +16771,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17349,11 +17129,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.mo b/conf/locale/cs/LC_MESSAGES/djangojs.mo index 7cf462af04..75e8870db7 100644 Binary files a/conf/locale/cs/LC_MESSAGES/djangojs.mo and b/conf/locale/cs/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.po b/conf/locale/cs/LC_MESSAGES/djangojs.po index e9ebc996e5..2be1634cb4 100644 --- a/conf/locale/cs/LC_MESSAGES/djangojs.po +++ b/conf/locale/cs/LC_MESSAGES/djangojs.po @@ -35,8 +35,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -89,8 +88,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -98,17 +95,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -203,7 +197,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -211,7 +204,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -232,7 +224,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -251,7 +242,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -315,11 +305,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -327,7 +315,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -338,21 +325,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1223,7 +1207,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1237,7 +1220,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1574,18 +1556,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1703,7 +1681,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1753,7 +1730,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1763,13 +1739,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1799,8 +1771,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2113,12 +2083,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2160,7 +2128,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2169,32 +2136,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2295,7 +2256,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2308,7 +2268,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2496,7 +2455,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2509,10 +2467,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2523,12 +2477,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2782,7 +2730,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2876,7 +2823,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2946,6 +2893,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2967,7 +2918,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2975,7 +2926,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3153,6 +3104,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3199,18 +3158,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3219,7 +3166,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3259,7 +3205,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3270,7 +3216,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3369,8 +3314,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3579,7 +3524,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3637,8 +3581,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3680,19 +3654,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3701,11 +3662,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3780,8 +3736,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3886,7 +3841,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3925,7 +3879,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3953,7 +3906,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4068,14 +4020,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4186,7 +4133,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4354,7 +4300,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4412,6 +4357,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4583,6 +4532,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4861,7 +4818,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4929,6 +4885,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4939,10 +4909,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4968,12 +4946,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5073,7 +5049,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5144,10 +5119,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5280,7 +5251,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5359,7 +5329,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5413,7 +5382,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5533,15 +5501,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5551,11 +5513,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5571,7 +5530,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5596,8 +5554,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5624,8 +5580,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/cy/LC_MESSAGES/django.mo b/conf/locale/cy/LC_MESSAGES/django.mo index 94032e7745..ddce5b22af 100644 Binary files a/conf/locale/cy/LC_MESSAGES/django.mo and b/conf/locale/cy/LC_MESSAGES/django.mo differ diff --git a/conf/locale/cy/LC_MESSAGES/django.po b/conf/locale/cy/LC_MESSAGES/django.po index 01c79a1f6e..32384b89bf 100644 --- a/conf/locale/cy/LC_MESSAGES/django.po +++ b/conf/locale/cy/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: Ned Batchelder \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n" @@ -72,7 +72,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -80,7 +80,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -92,7 +91,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -119,15 +117,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -221,6 +215,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -241,7 +311,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -298,6 +368,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -408,102 +485,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -568,7 +549,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1004,7 +985,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1017,7 +998,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1064,7 +1045,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1103,13 +1084,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1141,17 +1120,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1194,7 +1171,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1350,7 +1326,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1382,7 +1357,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1434,7 +1408,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1463,7 +1436,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1604,8 +1576,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2122,12 +2092,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2246,9 +2210,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2486,7 +2447,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2562,8 +2522,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3146,7 +3104,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3398,7 +3356,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3541,7 +3498,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3589,7 +3545,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3627,7 +3582,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3924,19 +3878,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4046,6 +3996,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4094,7 +4060,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4154,7 +4119,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4219,12 +4184,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4287,9 +4251,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4323,7 +4286,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4357,22 +4320,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4381,7 +4332,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4482,12 +4432,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4601,18 +4548,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4643,7 +4586,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4759,7 +4701,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4826,8 +4767,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4881,7 +4822,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4940,7 +4880,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5189,7 +5128,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5239,7 +5177,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5329,8 +5267,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5426,7 +5363,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5456,14 +5392,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5556,7 +5489,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5593,7 +5526,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5723,7 +5655,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6070,7 +6001,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6176,7 +6106,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6358,7 +6287,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6411,12 +6339,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6436,10 +6361,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6476,7 +6398,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6488,11 +6410,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6514,7 +6436,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6742,12 +6664,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6757,21 +6676,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6849,8 +6760,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6862,12 +6771,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6877,11 +6784,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6993,7 +6898,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7023,7 +6927,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7239,8 +7147,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7252,13 +7159,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7278,7 +7180,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7287,13 +7189,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7308,10 +7208,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7321,7 +7219,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7353,14 +7251,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7374,7 +7271,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7401,13 +7298,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7428,7 +7323,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7511,7 +7405,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7555,7 +7449,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7563,7 +7457,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7597,7 +7491,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7648,15 +7542,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7720,7 +7605,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7757,7 +7642,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7800,13 +7685,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7828,31 +7711,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7869,7 +7752,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7885,7 +7767,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7912,7 +7793,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7972,8 +7853,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8112,7 +7991,7 @@ msgstr[3] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8293,7 +8172,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8314,17 +8193,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8344,13 +8221,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8368,7 +8243,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8433,7 +8308,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8444,7 +8318,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8565,11 +8438,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8620,12 +8493,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8634,15 +8507,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8743,7 +8616,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8799,7 +8672,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8877,6 +8749,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8891,6 +8775,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9028,7 +8917,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9044,7 +8933,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9387,8 +9275,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9446,12 +9332,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9505,6 +9389,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9581,7 +9476,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9617,11 +9512,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9629,7 +9524,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9683,7 +9577,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9714,7 +9607,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9728,7 +9620,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9763,7 +9654,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9808,7 +9698,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9899,7 +9788,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9986,7 +9874,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10052,7 +9950,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10061,21 +9958,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10094,11 +9976,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10107,11 +10003,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10132,7 +10023,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10142,7 +10032,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10203,7 +10092,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10257,44 +10145,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10310,7 +10187,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10352,7 +10228,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10550,9 +10425,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10564,7 +10437,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10585,7 +10457,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10750,7 +10621,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10769,7 +10639,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10886,7 +10755,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11610,8 +11478,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11671,12 +11537,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11814,7 +11678,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11962,7 +11825,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12027,7 +11889,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12057,24 +11918,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12142,7 +11995,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12256,7 +12108,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12269,7 +12120,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12281,12 +12131,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12308,22 +12156,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12505,7 +12347,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12540,12 +12381,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12558,12 +12397,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12644,7 +12481,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12683,19 +12519,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13037,7 +12870,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13059,7 +12891,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13246,15 +13077,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13361,7 +13187,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13387,19 +13212,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13454,12 +13276,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13472,14 +13292,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13751,7 +13568,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13759,19 +13575,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13792,7 +13605,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13803,19 +13615,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13833,7 +13642,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13906,7 +13714,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13922,15 +13729,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14154,7 +13956,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14167,7 +13968,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14223,7 +14023,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14238,9 +14037,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14341,8 +14137,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14362,8 +14157,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14433,7 +14227,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14468,7 +14262,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14481,7 +14274,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14604,7 +14397,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14614,7 +14407,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14624,8 +14416,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14700,7 +14490,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14715,7 +14505,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14770,7 +14559,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14829,8 +14618,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14849,11 +14638,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14917,7 +14706,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14959,7 +14747,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15087,8 +14875,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15132,13 +14919,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15161,10 +14946,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15213,8 +15003,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15236,7 +15026,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15281,7 +15071,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15323,7 +15112,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15424,7 +15213,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15555,8 +15344,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15572,7 +15360,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15611,7 +15399,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15621,7 +15409,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15652,7 +15440,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15682,7 +15470,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15727,7 +15515,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15748,7 +15536,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15756,7 +15544,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15768,7 +15556,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15820,7 +15608,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15828,7 +15616,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15888,7 +15676,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15942,7 +15730,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15995,13 +15783,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16240,7 +16026,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16299,8 +16084,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16383,7 +16167,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16609,7 +16392,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16661,8 +16443,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16842,7 +16623,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16882,7 +16663,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16902,12 +16683,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16932,7 +16711,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16948,7 +16727,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16995,11 +16774,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17353,11 +17132,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.mo b/conf/locale/cy/LC_MESSAGES/djangojs.mo index 3caf4d35a6..96730b97f1 100644 Binary files a/conf/locale/cy/LC_MESSAGES/djangojs.mo and b/conf/locale/cy/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.po b/conf/locale/cy/LC_MESSAGES/djangojs.po index f2642342bb..87578d51a0 100644 --- a/conf/locale/cy/LC_MESSAGES/djangojs.po +++ b/conf/locale/cy/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -196,7 +190,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -204,7 +197,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -225,7 +217,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -244,7 +235,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -308,11 +298,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -320,7 +308,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -331,21 +318,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1216,7 +1200,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1230,7 +1213,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1567,18 +1549,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1696,7 +1674,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1749,7 +1726,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1759,13 +1735,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1795,8 +1767,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2122,12 +2092,10 @@ msgstr[3] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2170,7 +2138,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2179,32 +2146,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2305,7 +2266,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2318,7 +2278,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2506,7 +2465,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2519,10 +2477,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2533,12 +2487,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2792,7 +2740,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2886,7 +2833,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2956,6 +2903,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2977,7 +2928,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2985,7 +2936,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3168,6 +3119,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3214,18 +3173,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3234,7 +3181,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3277,7 +3223,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3288,7 +3234,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3387,8 +3332,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3597,7 +3542,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3655,8 +3599,39 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3699,20 +3674,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3721,11 +3682,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3800,8 +3756,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3906,7 +3861,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3945,7 +3899,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3973,7 +3926,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4088,14 +4040,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4207,7 +4154,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4375,7 +4321,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4433,6 +4378,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4604,6 +4553,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4882,7 +4839,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4950,6 +4906,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4960,10 +4930,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4989,12 +4967,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5094,7 +5070,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5165,10 +5140,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5301,7 +5272,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5380,7 +5350,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5434,7 +5403,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5554,15 +5522,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5572,11 +5534,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5592,7 +5551,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5617,8 +5575,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5645,8 +5601,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/da/LC_MESSAGES/django.mo b/conf/locale/da/LC_MESSAGES/django.mo index 6b506de48d..6faeb6125f 100644 Binary files a/conf/locale/da/LC_MESSAGES/django.mo and b/conf/locale/da/LC_MESSAGES/django.mo differ diff --git a/conf/locale/da/LC_MESSAGES/django.po b/conf/locale/da/LC_MESSAGES/django.po index e5610e1fe3..175a529761 100644 --- a/conf/locale/da/LC_MESSAGES/django.po +++ b/conf/locale/da/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/da/LC_MESSAGES/djangojs.mo b/conf/locale/da/LC_MESSAGES/djangojs.mo index 0e3fcd1de2..b1bcb7e8a1 100644 Binary files a/conf/locale/da/LC_MESSAGES/djangojs.mo and b/conf/locale/da/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/da/LC_MESSAGES/djangojs.po b/conf/locale/da/LC_MESSAGES/djangojs.po index f9d604153a..fd1dce14a9 100644 --- a/conf/locale/da/LC_MESSAGES/djangojs.po +++ b/conf/locale/da/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/de_DE/LC_MESSAGES/django.mo b/conf/locale/de_DE/LC_MESSAGES/django.mo index 62047b4495..579f5030da 100644 Binary files a/conf/locale/de_DE/LC_MESSAGES/django.mo and b/conf/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/de_DE/LC_MESSAGES/django.po b/conf/locale/de_DE/LC_MESSAGES/django.po index f94ff5060b..659eb152bb 100644 --- a/conf/locale/de_DE/LC_MESSAGES/django.po +++ b/conf/locale/de_DE/LC_MESSAGES/django.po @@ -113,9 +113,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" -"PO-Revision-Date: 2014-12-30 16:21+0000\n" -"Last-Translator: Alexander L. \n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" +"PO-Revision-Date: 2015-02-19 20:46+0000\n" +"Last-Translator: Johannes Heinlein \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,7 +141,7 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Forum" @@ -157,7 +157,6 @@ msgstr "Erweitert" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py msgid "Section" msgstr "Abschnitt" @@ -180,8 +179,6 @@ msgstr "Abgeschlossen" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py msgid "Name" msgstr "Name" @@ -274,6 +271,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Der Benutzername muss wenigstens zwei Zeichen lang sein" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Eine korrekt formatierte E-Mail ist nötig" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Ein gültiges Passwort wird benötigt" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Dein Name muss wenigstens zwei Zeichen lang sein" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "Benutzername kann nur aus A-Z und 0-9, ohne Leerzeichen, bestehen." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Es ist erforderlich, dass du die Nutzungsbedingungen akzeptierst." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Die Angabe des Bildungsstands ist nötig" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Die Angabe deines Geschlechts ist erforderlich" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Dein Geburtsjahr ist erforderlich" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Deine E-Mail-Adresse ist erforderlich" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Eine Beschreibung deiner Ziele ist nötig" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Eine Angabe zu Stadt ist erforderlich" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Ein Angabe zu Land ist notwendig" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Um dich einzuschreiben, musst du den Ehrenkodex befolgen." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Du hast ein oder mehrere benötigte Felder ausgelassen" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Nutzername und Passwort dürfen nicht übereinstimmen" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Passwort:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -294,7 +367,7 @@ msgstr "weiblich" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "anderes" @@ -350,6 +423,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -472,102 +552,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "Es existiert bereits ein Konto mit dieser E-Mail-Adresse '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Fehler (401 {field}). Bitte schreibe uns eine E-Mail." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Um dich einzuschreiben, musst du den Ehrenkodex befolgen." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Es ist erforderlich, dass du die Nutzungsbedingungen akzeptierst." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Der Benutzername muss wenigstens zwei Zeichen lang sein" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Eine korrekt formatierte E-Mail ist nötig" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Dein Name muss wenigstens zwei Zeichen lang sein" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Ein gültiges Passwort wird benötigt" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Das Akzeptieren der Nutzungsbedingungen ist erforderlich" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Zustimmung zum Ehrenkodex ist nötig" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Die Angabe des Bildungsstands ist nötig" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Die Angabe deines Geschlechts ist erforderlich" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Dein Geburtsjahr ist erforderlich" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Deine E-Mail-Adresse ist erforderlich" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Eine Beschreibung deiner Ziele ist nötig" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Eine Angabe zu Stadt ist erforderlich" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Ein Angabe zu Land ist notwendig" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Du hast ein oder mehrere benötigte Felder ausgelassen" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Gültige E-Mail-Adresse erforderlich." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "Benutzername kann nur aus A-Z und 0-9, ohne Leerzeichen, bestehen." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Passwort:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Nutzername und Passwort dürfen nicht übereinstimmen" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Aktivierungsnachricht konnte nicht gesendet werden." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -642,7 +626,7 @@ msgstr "" msgid "Name required" msgstr "Name benötigt" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Ungültige ID" @@ -1077,7 +1061,7 @@ msgstr "falsch" msgid "incomplete" msgstr "unvollständig" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "unbeantwortet" @@ -1090,7 +1074,7 @@ msgstr "verarbeite" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "Auswahlgruppe: unewartetes Schlagwort {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Antwort erhalten." @@ -1138,7 +1122,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "Kann nicht an die Warteschlange anschließen" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Keine Formel festgelegt" @@ -1146,7 +1130,7 @@ msgstr "Keine Formel festgelegt" msgid "Couldn't parse formula: {error_msg}" msgstr "Kann die Formel nicht verarbeiten: {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Fehler beim Erstellen der Vorschau" @@ -1187,13 +1171,11 @@ msgstr "Ausführung von unsicherem Javascript-Code ist nicht erlaubt." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1227,17 +1209,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" "Es gab ein Problem mit der Mitarbeiterantwort zu dieser Fragestellung. " @@ -1291,7 +1271,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1453,7 +1432,6 @@ msgstr "XML-Daten für die Anmerkung" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1484,7 +1462,6 @@ msgstr "Anmerkung" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Dieser Name erscheint in der horizontalen Navogationsleiste am oberen Rand " @@ -1549,7 +1526,6 @@ msgstr "" "Legt fest wann die Antwort auf die Fragestellung gezeigt wird. Ein " "Standardwert kann in den fortgeschrittenen Einstellungen festgelegt werden." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Immer" @@ -1578,7 +1554,6 @@ msgstr "Korrekt oder Überfällig" msgid "Past Due" msgstr "Überfällig" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Nie" @@ -1735,8 +1710,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Fragestellung geschlossen." @@ -2343,12 +2316,6 @@ msgstr "" "Benutze deine Kursstruktur, um deinen ersten Abschnitt und Unterabschnitt zu" " erstellen." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Bearbeite Kursstruktur" @@ -2488,9 +2455,6 @@ msgstr "" "Bescheibung und mehr enthält. Schreibe einen Text, den die Teilnehmer lesen," " bevor sie sich entscheiden, ob sie sich in den Kurs einschreiben." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Bearbeite Kursverlauf & Details" @@ -2776,7 +2740,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2856,8 +2819,6 @@ msgstr "" msgid "Text" msgstr "Text" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3782,7 +3743,6 @@ msgstr "" "moocsupport@mathworks.com." #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3931,7 +3891,6 @@ msgstr "Dozentenbewertung" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "KI-Bewertung" @@ -3987,7 +3946,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Fehler beim Abholen des Feedbacks vom Bewerter." @@ -4027,7 +3985,6 @@ msgstr "In Bearbeitung" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Fertig" @@ -4394,11 +4351,9 @@ msgstr "Suche" msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py msgid "Username" msgstr "Nutzername" @@ -4505,6 +4460,22 @@ msgid "User {username} has never accessed problem {location}" msgstr "" "Nutzer {username} hat auf die Fragestellung {location} nie zugegriffen" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "FEHLER: Keine abspielbare Videoquelle gefunden!" @@ -4615,7 +4586,7 @@ msgstr "festes Passwort" msgid "All ok!" msgstr "Alles in Ordnung!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Nutzername notwendig" @@ -4683,11 +4654,11 @@ msgstr "Gesamtanzahl der Nutzer" msgid "Courses loaded in the modulestore" msgstr "Kurse wurden in den Modulestore geladen" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "username" msgstr "Nutzername" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "E-Mail" @@ -4760,7 +4731,7 @@ msgstr "Erfolgreich zum Zweig gewechselt: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "Kurs {course_name} geladen
Fehler:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "Kursname" @@ -4795,7 +4766,7 @@ msgstr "" msgid "Deleted" msgstr "Gelöscht" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "Kurs-ID" @@ -4831,22 +4802,10 @@ msgstr "" "Importiere das angegebene git-Repository und den optionalen Zweig in den " "modulstore und in das optional angegebene Verzeichnis." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Thema wiedereröffnen" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Thema schließen" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Titel darf nicht leer sein" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Der Rumpf darf nicht leer sein" @@ -4855,7 +4814,6 @@ msgstr "Der Rumpf darf nicht leer sein" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Zu viele Kommentarebenen" @@ -4958,8 +4916,6 @@ msgstr "Benutzer-ID" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "Email" msgstr "E-Mail" @@ -5081,18 +5037,14 @@ msgstr "" msgid "coupon id is None" msgstr "Gutschein-ID ist nicht gegeben" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "Gutschein mit Gutschein-ID ({coupon_id}) existiert nicht" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "Gutschein mit Gutschein-ID ({coupon_id}) ist bereits inaktiv" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "Gutschein mit Gutschein-ID ({coupon_id}) erfolgreich aktualisiert" @@ -5126,7 +5078,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "Gutschein-ID nicht gefunden" @@ -5234,7 +5185,6 @@ msgstr "Bitte gib einen Aufgabennamen an" msgid "Invalid assignment name '{name}'" msgstr "Ungültiger Aufgabenname '{name}'" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Externe E-Mail-Adresse" @@ -5362,7 +5312,6 @@ msgstr "" "Keine Fälligkeitsdatumsverlängerung für diesen Teilnehmer und diese " "Lerneinheit festgelegt." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Erweitertes Fälligkeitsdatum" @@ -5420,7 +5369,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Keine Statusinformation verfügbar" @@ -5672,7 +5620,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5722,7 +5669,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5812,8 +5759,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5909,7 +5855,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5939,14 +5884,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -6039,7 +5981,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -6076,7 +6018,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6206,7 +6147,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6553,7 +6493,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6659,7 +6598,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6841,7 +6779,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6894,12 +6831,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6919,10 +6853,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6959,7 +6890,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6971,11 +6902,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6997,7 +6928,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -7225,12 +7156,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -7240,21 +7168,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7332,8 +7252,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -7345,12 +7263,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -7360,11 +7276,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7476,7 +7390,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7506,7 +7419,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7722,8 +7639,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7735,13 +7651,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7761,7 +7672,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7770,13 +7681,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7791,10 +7700,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7804,7 +7711,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7836,14 +7743,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7857,7 +7763,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7884,13 +7790,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7911,7 +7815,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7994,7 +7897,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -8038,7 +7941,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -8046,7 +7949,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -8080,7 +7983,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -8131,15 +8034,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -8203,7 +8097,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -8240,7 +8134,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8283,13 +8177,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -8311,31 +8203,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8352,7 +8244,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -8368,7 +8259,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -8395,7 +8285,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -8455,8 +8345,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8593,7 +8481,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8774,7 +8662,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8795,17 +8683,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8825,13 +8711,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8849,7 +8733,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8914,7 +8798,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8925,7 +8808,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -9046,11 +8928,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -9101,12 +8983,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -9115,15 +8997,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -9224,7 +9106,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -9280,7 +9162,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -9358,6 +9239,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9372,6 +9265,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9509,7 +9407,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9525,7 +9423,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9864,8 +9761,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9923,12 +9818,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9982,6 +9875,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -10058,7 +9962,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -10094,11 +9998,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -10106,7 +10010,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -10160,7 +10063,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10191,7 +10093,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -10205,7 +10106,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10240,7 +10140,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -10285,7 +10184,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -10376,7 +10274,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10463,7 +10360,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10529,7 +10436,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10538,21 +10444,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10571,11 +10462,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10584,11 +10489,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10609,7 +10509,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10619,7 +10518,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10678,7 +10576,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10732,44 +10629,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10785,7 +10671,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10827,7 +10712,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -11025,9 +10909,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -11039,7 +10921,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -11060,7 +10941,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11225,7 +11105,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11244,7 +11123,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11357,7 +11235,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -12081,8 +11958,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12142,12 +12017,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -12285,7 +12158,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12433,7 +12305,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12498,7 +12369,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12528,24 +12398,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12613,7 +12475,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12727,7 +12588,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12740,7 +12600,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12752,12 +12611,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12779,22 +12636,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12976,7 +12827,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -13011,12 +12861,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -13029,12 +12877,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -13115,7 +12961,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13154,19 +12999,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13508,7 +13350,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13530,7 +13371,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13715,15 +13555,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13830,7 +13665,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13856,19 +13690,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13923,12 +13754,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13941,14 +13770,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -14220,7 +14046,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14228,19 +14053,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -14261,7 +14083,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -14272,19 +14093,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -14302,7 +14120,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -14375,7 +14192,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14391,15 +14207,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14623,7 +14434,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14636,7 +14446,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14692,7 +14501,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14707,9 +14515,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14810,8 +14615,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14831,8 +14635,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14902,7 +14705,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14937,7 +14740,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14950,7 +14752,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -15073,7 +14875,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -15083,7 +14885,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -15093,8 +14894,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15169,7 +14968,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -15184,7 +14983,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15239,7 +15037,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15298,8 +15096,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15318,11 +15116,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15386,7 +15184,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15428,7 +15225,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15556,8 +15353,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15601,13 +15397,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15630,10 +15424,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15682,8 +15481,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15705,7 +15504,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15750,7 +15549,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15792,7 +15590,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15893,7 +15691,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -16024,8 +15822,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -16041,7 +15838,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -16080,7 +15877,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -16090,7 +15887,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -16121,7 +15918,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16151,7 +15948,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16196,7 +15993,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16217,7 +16014,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16225,7 +16022,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16237,7 +16034,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16289,7 +16086,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16297,7 +16094,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16357,7 +16154,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16411,7 +16208,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16464,13 +16261,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16709,7 +16504,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16768,8 +16562,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16852,7 +16645,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -17078,7 +16870,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -17130,8 +16921,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17311,7 +17101,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17351,7 +17141,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17371,12 +17161,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17401,7 +17189,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17417,7 +17205,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17443,7 +17231,7 @@ msgstr "" #: wiki/admin.py wiki/models/article.py msgid "created" -msgstr "" +msgstr "erstellt" #: wiki/forms.py msgid "Only localhost... muahahaha" @@ -17464,11 +17252,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17822,11 +17610,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo index 300b6da53f..1b12f1e448 100644 Binary files a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo and b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.po b/conf/locale/de_DE/LC_MESSAGES/djangojs.po index 4a6a18a996..7447291d86 100644 --- a/conf/locale/de_DE/LC_MESSAGES/djangojs.po +++ b/conf/locale/de_DE/LC_MESSAGES/djangojs.po @@ -63,8 +63,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -106,8 +105,6 @@ msgstr "Dieser Link wird in einem neuen Browserfenster/tab geöffnet" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Unbekannt" @@ -115,7 +112,6 @@ msgstr "Unbekannt" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "Löschen" @@ -195,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s Punkt möglich)" msgstr[1] "(%(num_points)s Punkte möglich)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Antwort:" @@ -203,7 +198,6 @@ msgstr "Antwort:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Antwort verstecken" @@ -224,7 +218,6 @@ msgstr "Antwort versteckt" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "unbeantwortet" @@ -243,7 +236,6 @@ msgstr "Du musst zunächst eine Einstufung wählen, bevor du einreichen kannst." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Deine Punktzahl erfüllt nicht die Kriterien um fortzufahren. " @@ -321,11 +313,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Zeige Frage" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Verstecke Frage" @@ -333,7 +323,6 @@ msgstr "Verstecke Frage" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Absatz" @@ -344,21 +333,18 @@ msgstr "Vorformatiert" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Überschrift 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Überschrift 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Überschrift 3" @@ -1213,7 +1199,6 @@ msgstr "Link entfernen" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Alles ersetzen" @@ -1226,7 +1211,6 @@ msgstr "Ersetze mit" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "Ersetzen" @@ -1569,18 +1553,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1702,7 +1682,6 @@ msgstr "HD ein" msgid "HD off" msgstr "HD aus" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Videoposition" @@ -1749,7 +1728,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Diskussion ausblenden" @@ -1759,13 +1737,9 @@ msgid "Show Discussion" msgstr "Diskussion anzeigen" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1804,8 +1778,6 @@ msgstr "" "einmal. " #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2118,12 +2090,10 @@ msgid "All flags have been removed. To undo, uncheck the box." msgstr "" "Alle Warnungen wurden entfernt. Zum Rückgängigmachen, entferne das Häkchen." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Du hast diese Anmerkung bereits mitgeteilt." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Berichte Anmerkung als anstößig oder beleidigend." @@ -2163,7 +2133,6 @@ msgstr "Gesendet am" msgid "More" msgstr "Mehr" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Meine Notizen" @@ -2172,32 +2141,26 @@ msgstr "Meine Notizen" msgid "Instructor" msgstr "Dozent" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Öffentlich" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Suche" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Benutzer" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Stichworte" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Text der Anmerkung" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "Lösche" @@ -2291,7 +2254,6 @@ msgstr "Benutzername" msgid "Email" msgstr "E-Mail" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Zugang widerrufen" @@ -2304,7 +2266,6 @@ msgstr "Benutzernamen oder E-Mail-Adresse eingeben" msgid "Please enter a username or email." msgstr "Bitte gib einen Benutzernamen oder eine E-Mail-Adresse ein." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Fehler beim Ändern der Rechte des Nutzers." @@ -2522,7 +2483,6 @@ msgstr "" msgid "Error sending email." msgstr "Fehler beim Senden der E-Mail." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Es gibt keinen E-Mail-Verlauf für diesen Kurs." @@ -2537,10 +2497,6 @@ msgid "There was an error obtaining email content history for this course." msgstr "" "Es gab einen Fehler beim Holen des E-Mail-Inhalt-Verlauf für diesen Kurs." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2552,12 +2508,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Bitte gib den Pfad der Fragestellung ein." @@ -2852,7 +2802,6 @@ msgstr "System ist im ungültigen Zustand: <%= state %>" msgid "System got into invalid state for submission: " msgstr "System ist in einem ungülitigem Zustand für Einreichungen:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Verstecken)" @@ -2946,7 +2895,7 @@ msgstr "Bildbeschreibung hier eingeben" msgid "enter link description here" msgstr "Linkbeschreibung hier eingeben" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "Code hier eingeben" @@ -3016,6 +2965,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3037,7 +2990,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3045,7 +2998,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3218,6 +3171,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3264,18 +3225,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3284,7 +3233,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3322,7 +3270,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3333,7 +3281,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3432,8 +3379,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3642,7 +3589,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3697,8 +3643,37 @@ msgstr "Neue Datei hochladen" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3739,18 +3714,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3759,11 +3722,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3838,8 +3796,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3944,7 +3901,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3983,7 +3939,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4011,7 +3966,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Für die Teilnehmer anzeigen lassen" @@ -4126,14 +4080,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4243,7 +4192,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4411,7 +4359,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4469,6 +4416,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4640,6 +4591,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4918,7 +4877,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4986,6 +4944,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4996,10 +4968,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5025,12 +5005,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5130,7 +5108,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5201,10 +5178,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5337,7 +5310,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5416,7 +5388,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5470,7 +5441,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5590,15 +5560,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5608,11 +5572,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5628,7 +5589,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5653,8 +5613,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5681,8 +5639,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/el/LC_MESSAGES/django.mo b/conf/locale/el/LC_MESSAGES/django.mo index 1468be3b49..82f4abfd7e 100644 Binary files a/conf/locale/el/LC_MESSAGES/django.mo and b/conf/locale/el/LC_MESSAGES/django.mo differ diff --git a/conf/locale/el/LC_MESSAGES/django.po b/conf/locale/el/LC_MESSAGES/django.po index 2eb3d7e972..a5cb7a54fe 100644 --- a/conf/locale/el/LC_MESSAGES/django.po +++ b/conf/locale/el/LC_MESSAGES/django.po @@ -55,7 +55,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Panos Chronis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" @@ -86,7 +86,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -106,7 +105,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -133,15 +131,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -235,6 +229,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -255,7 +325,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -312,6 +382,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -422,102 +499,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -578,7 +559,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1012,7 +993,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1025,7 +1006,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1064,7 +1045,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1072,7 +1053,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1111,13 +1092,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1149,17 +1128,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1202,7 +1179,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1358,7 +1334,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1390,7 +1365,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1442,7 +1416,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1471,7 +1444,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1612,8 +1584,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2130,12 +2100,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2254,9 +2218,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2494,7 +2455,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2570,8 +2530,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3150,7 +3108,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3402,7 +3360,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3545,7 +3502,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3593,7 +3549,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3631,7 +3586,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3928,19 +3882,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4048,6 +3998,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4096,7 +4062,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4156,7 +4121,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4221,12 +4186,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4289,9 +4253,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4325,7 +4288,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4359,22 +4322,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4383,7 +4334,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4484,12 +4434,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4603,18 +4550,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4645,7 +4588,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4757,7 +4699,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4824,8 +4765,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4879,7 +4820,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4938,7 +4878,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5187,7 +5126,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5237,7 +5175,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5327,8 +5265,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5424,7 +5361,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5454,14 +5390,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5554,7 +5487,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5591,7 +5524,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5721,7 +5653,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6068,7 +5999,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6174,7 +6104,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6356,7 +6285,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6409,12 +6337,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6434,10 +6359,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6474,7 +6396,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6486,11 +6408,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6512,7 +6434,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6740,12 +6662,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6755,21 +6674,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6847,8 +6758,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6860,12 +6769,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6875,11 +6782,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6991,7 +6896,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7021,7 +6925,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7237,8 +7145,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7250,13 +7157,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7276,7 +7178,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7285,13 +7187,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7306,10 +7206,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7319,7 +7217,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7351,14 +7249,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7372,7 +7269,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7399,13 +7296,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7426,7 +7321,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7509,7 +7403,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7553,7 +7447,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7561,7 +7455,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7595,7 +7489,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7646,15 +7540,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7718,7 +7603,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7755,7 +7640,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7798,13 +7683,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7826,31 +7709,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7867,7 +7750,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7883,7 +7765,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7910,7 +7791,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7970,8 +7851,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8108,7 +7987,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8289,7 +8168,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8310,17 +8189,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8340,13 +8217,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8364,7 +8239,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8429,7 +8304,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8440,7 +8314,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8561,11 +8434,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8616,12 +8489,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8630,15 +8503,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8739,7 +8612,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8795,7 +8668,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8873,6 +8745,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8887,6 +8771,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9024,7 +8913,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9040,7 +8929,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9379,8 +9267,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9438,12 +9324,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9497,6 +9381,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9573,7 +9468,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9609,11 +9504,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9621,7 +9516,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9675,7 +9569,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9706,7 +9599,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9720,7 +9612,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9755,7 +9646,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9800,7 +9690,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9891,7 +9780,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9978,7 +9866,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10044,7 +9942,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10053,21 +9950,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10086,11 +9968,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10099,11 +9995,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10124,7 +10015,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10134,7 +10024,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10193,7 +10082,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10247,44 +10135,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10300,7 +10177,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10342,7 +10218,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10540,9 +10415,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10554,7 +10427,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10575,7 +10447,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10740,7 +10611,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10759,7 +10629,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10872,7 +10741,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11596,8 +11464,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11657,12 +11523,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11800,7 +11664,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11948,7 +11811,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12013,7 +11875,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12043,24 +11904,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12128,7 +11981,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12242,7 +12094,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12255,7 +12106,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12267,12 +12117,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12294,22 +12142,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12491,7 +12333,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12526,12 +12367,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12544,12 +12383,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12630,7 +12467,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12669,19 +12505,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13023,7 +12856,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13045,7 +12877,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13230,15 +13061,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13345,7 +13171,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13371,19 +13196,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13438,12 +13260,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13456,14 +13276,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13735,7 +13552,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13743,19 +13559,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13776,7 +13589,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13787,19 +13599,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13817,7 +13626,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13890,7 +13698,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13906,15 +13713,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14138,7 +13940,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14151,7 +13952,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14207,7 +14007,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14222,9 +14021,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14325,8 +14121,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14346,8 +14141,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14417,7 +14211,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14452,7 +14246,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14465,7 +14258,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14588,7 +14381,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14598,7 +14391,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14608,8 +14400,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14684,7 +14474,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14699,7 +14489,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14754,7 +14543,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14813,8 +14602,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14833,11 +14622,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14901,7 +14690,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14943,7 +14731,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15071,8 +14859,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15116,13 +14903,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15145,10 +14930,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15197,8 +14987,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15220,7 +15010,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15265,7 +15055,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15307,7 +15096,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15408,7 +15197,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15539,8 +15328,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15556,7 +15344,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15595,7 +15383,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15605,7 +15393,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15636,7 +15424,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15666,7 +15454,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15711,7 +15499,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15732,7 +15520,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15740,7 +15528,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15752,7 +15540,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15804,7 +15592,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15812,7 +15600,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15872,7 +15660,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15926,7 +15714,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15979,13 +15767,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16224,7 +16010,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16283,8 +16068,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16367,7 +16151,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16593,7 +16376,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16645,8 +16427,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16826,7 +16607,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16866,7 +16647,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16886,12 +16667,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16916,7 +16695,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16932,7 +16711,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16979,11 +16758,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17337,11 +17116,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/el/LC_MESSAGES/djangojs.mo b/conf/locale/el/LC_MESSAGES/djangojs.mo index 8b6ef61a70..b38b2abb72 100644 Binary files a/conf/locale/el/LC_MESSAGES/djangojs.mo and b/conf/locale/el/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/el/LC_MESSAGES/djangojs.po b/conf/locale/el/LC_MESSAGES/djangojs.po index 8ebba948d3..ac242f8fc8 100644 --- a/conf/locale/el/LC_MESSAGES/djangojs.po +++ b/conf/locale/el/LC_MESSAGES/djangojs.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -92,8 +91,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -101,17 +98,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -204,7 +198,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -212,7 +205,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -233,7 +225,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -252,7 +243,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -316,11 +306,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -328,7 +316,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -339,21 +326,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1224,7 +1208,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1238,7 +1221,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1575,18 +1557,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1704,7 +1682,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1751,7 +1728,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1761,13 +1737,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1797,8 +1769,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2098,12 +2068,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2144,7 +2112,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2153,32 +2120,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2279,7 +2240,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2292,7 +2252,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2480,7 +2439,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2493,10 +2451,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2507,12 +2461,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2766,7 +2714,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2860,7 +2807,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2930,6 +2877,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2951,7 +2902,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2959,7 +2910,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3132,6 +3083,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3178,18 +3137,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3198,7 +3145,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3235,7 +3181,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3246,7 +3192,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3345,8 +3290,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3555,7 +3500,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3613,8 +3557,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3655,18 +3628,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3675,11 +3636,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3754,8 +3710,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3860,7 +3815,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3899,7 +3853,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3927,7 +3880,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4042,14 +3994,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4159,7 +4106,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4327,7 +4273,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4385,6 +4330,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4556,6 +4505,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4834,7 +4791,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4902,6 +4858,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4912,10 +4882,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4941,12 +4919,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5046,7 +5022,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5117,10 +5092,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5253,7 +5224,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5332,7 +5302,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5386,7 +5355,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5506,15 +5474,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5524,11 +5486,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5544,7 +5503,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5569,8 +5527,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5597,8 +5553,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/en_GB/LC_MESSAGES/django.mo b/conf/locale/en_GB/LC_MESSAGES/django.mo index c8fda1ed6d..ee98e3b50a 100644 Binary files a/conf/locale/en_GB/LC_MESSAGES/django.mo and b/conf/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/conf/locale/en_GB/LC_MESSAGES/django.po b/conf/locale/en_GB/LC_MESSAGES/django.po index 3839c450fa..e13a516421 100644 --- a/conf/locale/en_GB/LC_MESSAGES/django.po +++ b/conf/locale/en_GB/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/edx-platform/language/en_GB/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/en_GB/LC_MESSAGES/djangojs.mo b/conf/locale/en_GB/LC_MESSAGES/djangojs.mo index d62036e766..980a8f5b01 100644 Binary files a/conf/locale/en_GB/LC_MESSAGES/djangojs.mo and b/conf/locale/en_GB/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/en_GB/LC_MESSAGES/djangojs.po b/conf/locale/en_GB/LC_MESSAGES/djangojs.po index 2772139d92..c81b7b81eb 100644 --- a/conf/locale/en_GB/LC_MESSAGES/djangojs.po +++ b/conf/locale/en_GB/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/edx-platform/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/eo/LC_MESSAGES/django.mo b/conf/locale/eo/LC_MESSAGES/django.mo index aa3ade1d7d..3048f19d7f 100644 Binary files a/conf/locale/eo/LC_MESSAGES/django.mo and b/conf/locale/eo/LC_MESSAGES/django.mo differ diff --git a/conf/locale/eo/LC_MESSAGES/django.po b/conf/locale/eo/LC_MESSAGES/django.po index 62f0c85c02..bdfa198327 100644 --- a/conf/locale/eo/LC_MESSAGES/django.po +++ b/conf/locale/eo/LC_MESSAGES/django.po @@ -37,8 +37,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:13+0000\n" -"PO-Revision-Date: 2015-02-17 16:13:47.403570\n" +"POT-Creation-Date: 2015-02-23 18:47+0000\n" +"PO-Revision-Date: 2015-02-23 18:47:23.375975\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Nötés Ⱡ'σяєм ι#" #. #-#-#-#-# mako.po (0.1a) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "Dïsçüssïön Ⱡ#" @@ -76,7 +76,6 @@ msgstr "Dïsçüssïön Ⱡ#" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Prößlém #" @@ -88,7 +87,6 @@ msgstr "Àdvänçéd #" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -115,15 +113,11 @@ msgstr "Çömplété #" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nämé Ⱡ'σяєм#" @@ -229,6 +223,87 @@ msgstr "Whïtélïst {country} för {course} Ⱡ'σя#" msgid "Blacklist {country} for {course}" msgstr "Bläçklïst {country} för {course} Ⱡ'σя#" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Ûsérnämé müst ßé mïnïmüm öf twö çhäräçtérs löng Ⱡ'σяєм ιρѕυм #" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "À pröpérlý förmättéd é-mäïl ïs réqüïréd Ⱡ'σяєм ιρѕ#" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "À välïd pässwörd ïs réqüïréd Ⱡ'σяєм #" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" +"Ýöür légäl nämé müst ßé ä mïnïmüm öf twö çhäräçtérs löng Ⱡ'σяєм ιρѕυм ∂σł#" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Ûsérnämé shöüld önlý çönsïst öf À-Z änd 0-9, wïth nö späçés. Ⱡ'σяєм ιρѕυм " +"∂σłσ#" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" +"Ûsérnämé çännöt ßé möré thän %(limit_value)s çhäräçtérs löng Ⱡ'σяєм ιρѕυм #" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" +"Émäïl çännöt ßé möré thän %(limit_value)s çhäräçtérs löng Ⱡ'σяєм ιρѕυм#" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Ýöü müst äççépt thé térms öf sérvïçé. Ⱡ'σяєм ιρѕ#" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "À lévél öf édüçätïön ïs réqüïréd Ⱡ'σяєм ι#" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Ýöür géndér ïs réqüïréd Ⱡ'σяє#" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Ýöür ýéär öf ßïrth ïs réqüïréd Ⱡ'σяєм #" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Ýöür mäïlïng äddréss ïs réqüïréd Ⱡ'σяєм ι#" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "À désçrïptïön öf ýöür göäls ïs réqüïréd Ⱡ'σяєм ιρѕ#" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "À çïtý ïs réqüïréd Ⱡ'σ#" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "À çöüntrý ïs réqüïréd Ⱡ'σя#" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Tö énröll, ýöü müst föllöw thé hönör çödé. Ⱡ'σяєм ιρѕυ#" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Ýöü äré mïssïng öné ör möré réqüïréd fïélds Ⱡ'σяєм ιρѕυм#" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Ûsérnämé änd pässwörd fïélds çännöt mätçh Ⱡ'σяєм ιρѕυ#" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Pässwörd: Ⱡ#" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -251,7 +326,7 @@ msgstr "Fémälé Ⱡ'σяєм ιρѕ#" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Öthér Ⱡ'σяєм ι#" @@ -310,6 +385,16 @@ msgstr "" "Thé çömpäný ïdéntïfïér för thé LïnkédÌn Àdd-tö-Pröfïlé ßüttön é.g " "0_0dPSPýS070é0HsÉ9HNz_13_d11_ Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" +"Shört ïdéntïfïér för thé LïnkédÌn pärtnér üséd ïn thé träçkïng çödé. " +"(Éxämplé: 'édx') Ìf nö välüé ïs prövïdéd, träçkïng çödés wïll nöt ßé sént " +"tö LïnkédÌn. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢#" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "{platform_name} Çértïfïçäté för {course_name} Ⱡ'σяє#" @@ -441,105 +526,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "Àn äççöünt wïth thé Émäïl '{email}' älréädý éxïsts. Ⱡ'σяєм ιρѕυм #" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Érrör (401 {field}). É-mäïl üs. Ⱡ'σяєм#" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Tö énröll, ýöü müst föllöw thé hönör çödé. Ⱡ'σяєм ιρѕυ#" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Ýöü müst äççépt thé térms öf sérvïçé. Ⱡ'σяєм ιρѕ#" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Ûsérnämé müst ßé mïnïmüm öf twö çhäräçtérs löng Ⱡ'σяєм ιρѕυм #" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "À pröpérlý förmättéd é-mäïl ïs réqüïréd Ⱡ'σяєм ιρѕ#" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" -"Ýöür légäl nämé müst ßé ä mïnïmüm öf twö çhäräçtérs löng Ⱡ'σяєм ιρѕυм ∂σł#" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "À välïd pässwörd ïs réqüïréd Ⱡ'σяєм #" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Àççéptïng Térms öf Sérvïçé ïs réqüïréd Ⱡ'σяєм ιρѕ#" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Àgrééïng tö thé Hönör Çödé ïs réqüïréd Ⱡ'σяєм ιρѕ#" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "À lévél öf édüçätïön ïs réqüïréd Ⱡ'σяєм ι#" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Ýöür géndér ïs réqüïréd Ⱡ'σяє#" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Ýöür ýéär öf ßïrth ïs réqüïréd Ⱡ'σяєм #" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Ýöür mäïlïng äddréss ïs réqüïréd Ⱡ'σяєм ι#" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "À désçrïptïön öf ýöür göäls ïs réqüïréd Ⱡ'σяєм ιρѕ#" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "À çïtý ïs réqüïréd Ⱡ'σ#" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "À çöüntrý ïs réqüïréd Ⱡ'σя#" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Ýöü äré mïssïng öné ör möré réqüïréd fïélds Ⱡ'σяєм ιρѕυм#" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "Ûsérnämé çännöt ßé möré thän {num} çhäräçtérs löng Ⱡ'σяєм ιρѕυм #" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "Émäïl çännöt ßé möré thän {num} çhäräçtérs löng Ⱡ'σяєм ιρѕυм#" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Välïd é-mäïl ïs réqüïréd. Ⱡ'σяєм#" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Ûsérnämé shöüld önlý çönsïst öf À-Z änd 0-9, wïth nö späçés. Ⱡ'σяєм ιρѕυм " -"∂σłσ#" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Pässwörd: Ⱡ#" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Ûsérnämé änd pässwörd fïélds çännöt mätçh Ⱡ'σяєм ιρѕυ#" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Çöüld nöt sénd äçtïvätïön é-mäïl. Ⱡ'σяєм ι#" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -616,7 +602,7 @@ msgstr "" msgid "Name required" msgstr "Nämé réqüïréd Ⱡ'#" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Ìnvälïd ÌD Ⱡ#" @@ -1053,7 +1039,7 @@ msgstr "ïnçörréçt #" msgid "incomplete" msgstr "ïnçömplété Ⱡ#" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "ünänswéréd Ⱡ#" @@ -1066,7 +1052,7 @@ msgstr "pröçéssïng Ⱡ#" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ÇhöïçéGröüp: ünéxpéçtéd täg {tag_name} Ⱡ'σяєм ι#" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Ànswér réçéïvéd. Ⱡ'σ#" @@ -1115,7 +1101,7 @@ msgstr "Érrör rünnïng çödé. Ⱡ'σя#" msgid "Cannot connect to the queue" msgstr "Çännöt çönnéçt tö thé qüéüé Ⱡ'σяєм#" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Nö förmülä spéçïfïéd. Ⱡ'σя#" @@ -1123,7 +1109,7 @@ msgstr "Nö förmülä spéçïfïéd. Ⱡ'σя#" msgid "Couldn't parse formula: {error_msg}" msgstr "Çöüldn't pärsé förmülä: {error_msg} Ⱡ'σяєм#" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Érrör whïlé réndérïng prévïéw Ⱡ'σяєм #" @@ -1162,13 +1148,11 @@ msgstr "Éxéçütïön öf ünsäfé Jäväsçrïpt çödé ïs nöt ällöwéd #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "Çhéçkßöxés Ⱡ#" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "Mültïplé Çhöïçé Ⱡ'#" @@ -1202,17 +1186,15 @@ msgstr "Trüé/Fälsé Çhöïçé Ⱡ'σ#" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "Dröpdöwn #" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Nümérïçäl Ìnpüt Ⱡ'#" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" "Théré wäs ä prößlém wïth thé stäff änswér tö thïs prößlém. Ⱡ'σяєм ιρѕυм " @@ -1267,7 +1249,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "Téxt Ìnpüt Ⱡ#" @@ -1439,7 +1420,6 @@ msgstr "XML dätä för thé ännötätïön Ⱡ'σяєм#" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1471,7 +1451,6 @@ msgstr "Ànnötätïön Ⱡ#" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Thïs nämé äppéärs ïn thé hörïzöntäl nävïgätïön ät thé töp öf thé pägé. " @@ -1537,7 +1516,6 @@ msgstr "" "Défïnés whén tö shöw thé änswér tö thé prößlém. À défäült välüé çän ßé sét " "ïn Àdvänçéd Séttïngs. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Àlwäýs Ⱡ'σяєм ιρѕ#" @@ -1566,7 +1544,6 @@ msgstr "Çörréçt ör Päst Düé Ⱡ'σя#" msgid "Past Due" msgstr "Päst Düé #" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Névér Ⱡ'σяєм ι#" @@ -1730,8 +1707,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Prößlém ïs çlöséd. Ⱡ'σ#" @@ -2370,12 +2345,6 @@ msgstr "" "Ûsé ýöür çöürsé öütlïné tö ßüïld ýöür fïrst Séçtïön änd Süßséçtïön. Ⱡ'σяєм " "ιρѕυм ∂σłσя ѕ#" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Édït Çöürsé Öütlïné Ⱡ'σя#" @@ -2517,9 +2486,6 @@ msgstr "" " änd möré. Dräft thé téxt stüdénts wïll réäd ßéföré déçïdïng tö énröll ïn " "ýöür çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιη#" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Édït Çöürsé Sçhédülé & Détäïls Ⱡ'σяєм ι#" @@ -2826,7 +2792,6 @@ msgstr "Böth Ⱡ'σяєм#" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Àßöüt Ⱡ'σяєм ι#" @@ -2917,8 +2882,6 @@ msgstr "" msgid "Text" msgstr "Téxt Ⱡ'σяєм#" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3619,7 +3582,7 @@ msgid "Wiki" msgstr "Wïkï Ⱡ'σяєм#" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Téxtßööks #" @@ -3925,7 +3888,6 @@ msgstr "" " αłιqυα#" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -4090,7 +4052,6 @@ msgstr "Ìnstrüçtör-Àsséssmént Ⱡ'σя#" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "ÀÌ-Àsséssmént Ⱡ'#" @@ -4145,7 +4106,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Érrör géttïng féédßäçk fröm grädér. Ⱡ'σяєм ιρ#" @@ -4185,7 +4145,6 @@ msgstr "Ìn prögréss Ⱡ#" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Döné Ⱡ'σяєм#" @@ -4562,19 +4521,15 @@ msgstr "Séärçh Ⱡ'σяєм ιρѕ#" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Çöpýrïght #" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Ûsérnämé #" @@ -4687,6 +4642,26 @@ msgstr "Ûsér {username} döés nöt éxïst. Ⱡ'σяє#" msgid "User {username} has never accessed problem {location}" msgstr "Ûsér {username} häs névér äççésséd prößlém {location} Ⱡ'σяєм ιρѕ#" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" +"Ýöü müst ßé sïgnéd ïn tö {platform_name} tö çréäté ä çértïfïçäté. Ⱡ'σяєм " +"ιρѕυм ∂σ#" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "Çöürsé ïs nöt välïd Ⱡ'σя#" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" +"Ýöür çértïfïçäté wïll ßé äväïläßlé whén ýöü päss thé çöürsé. Ⱡ'σяєм ιρѕυм " +"∂σłσ#" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "Çréätïng çértïfïçäté Ⱡ'σя#" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ÉRRÖR: Nö pläýäßlé vïdéö söürçés föünd! Ⱡ'σяєм ιρѕ#" @@ -4741,7 +4716,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "Émäïl Àddréss Ⱡ'#" @@ -4805,7 +4779,7 @@ msgstr "fïxéd pässwörd Ⱡ'#" msgid "All ok!" msgstr "Àll ök! #" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Müst prövïdé üsérnämé Ⱡ'σя#" @@ -4871,12 +4845,11 @@ msgstr "Tötäl nümßér öf üsérs Ⱡ'σя#" msgid "Courses loaded in the modulestore" msgstr "Çöürsés löädéd ïn thé mödüléstöré Ⱡ'σяєм ι#" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "üsérnämé #" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "émäïl Ⱡ'σяєм ι#" @@ -4950,9 +4923,8 @@ msgstr "Süççéssfüllý swïtçhéd tö ßränçh: {branch_name} Ⱡ'σяєм msgid "Loaded course {course_name}
Errors:" msgstr "Löädéd çöürsé {course_name}
Érrörs: Ⱡ'σяєм#" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "Çöürsé Nämé Ⱡ#" @@ -4987,7 +4959,7 @@ msgstr "" msgid "Deleted" msgstr "Délétéd #" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "çöürsé_ïd #" @@ -5023,22 +4995,10 @@ msgstr "" "Ìmpört thé spéçïfïéd gït répösïtörý änd öptïönäl ßränçh ïntö thé mödüléstöré" " änd öptïönällý spéçïfïéd dïréçtörý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє#" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Ré-öpén thréäd Ⱡ'#" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Çlösé thréäd Ⱡ#" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Tïtlé çän't ßé émptý Ⱡ'σя#" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Bödý çän't ßé émptý Ⱡ'σя#" @@ -5047,7 +5007,6 @@ msgstr "Bödý çän't ßé émptý Ⱡ'σя#" msgid "Topic doesn't exist" msgstr "Töpïç döésn't éxïst Ⱡ'σя#" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Çömmént lévél töö déép Ⱡ'σяє#" @@ -5162,12 +5121,9 @@ msgstr "Ûsér ÌD #" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Émäïl Ⱡ'σяєм ι#" @@ -5309,19 +5265,15 @@ msgstr "" msgid "coupon id is None" msgstr "çöüpön ïd ïs Nöné Ⱡ'σ#" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "çöüpön wïth thé çöüpön ïd ({coupon_id}) DöésNötÉxïst Ⱡ'σяєм ιρѕυм#" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" "çöüpön wïth thé çöüpön ïd ({coupon_id}) ïs älréädý ïnäçtïvé Ⱡ'σяєм ιρѕυм ∂#" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -5362,7 +5314,6 @@ msgstr "" "çöüpön wïth thé çöüpön çödé ({code}) älréädý éxïsts för thïs çöürsé Ⱡ'σяєм " "ιρѕυм ∂σłσя #" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "çöüpön ïd nöt föünd Ⱡ'σя#" @@ -5480,7 +5431,6 @@ msgstr "Pléäsé éntér än ässïgnmént nämé Ⱡ'σяєм ι#" msgid "Invalid assignment name '{name}'" msgstr "Ìnvälïd ässïgnmént nämé '{name}' Ⱡ'σяєм #" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Éxtérnäl émäïl Ⱡ'#" @@ -5549,8 +5499,8 @@ msgstr "ÌD Ⱡ'#" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5613,7 +5563,6 @@ msgid "No due date extension is set for that student and unit." msgstr "" "Nö düé däté éxténsïön ïs sét för thät stüdént änd ünït. Ⱡ'σяєм ιρѕυм ∂σł#" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Éxténdéd Düé Däté Ⱡ'σ#" @@ -5672,7 +5621,6 @@ msgstr "générätéd #" msgid "cohorted" msgstr "çöhörtéd #" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Nö stätüs ïnförmätïön äväïläßlé Ⱡ'σяєм ι#" @@ -5972,7 +5920,6 @@ msgstr "" "Vïéw süßmïssïöns thät hävé ßéén fläggéd ßý stüdénts äs ïnäppröprïäté. Ⱡ'σяєм" " ιρѕυм ∂σłσя ѕ#" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Néw süßmïssïöns tö grädé Ⱡ'σяє#" @@ -6031,7 +5978,7 @@ msgstr "" "Thé ämöünt öf thé tränsäçtïön. Ûsé pösïtïvé ämöünts för päýménts änd " "négätïvé ämöünts för réfünds. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "Löwér-çäsé ÌSÖ çürrénçý çödés Ⱡ'σяєм #" @@ -6143,8 +6090,7 @@ msgstr "Dönätïön för {platform_name} Ⱡ'σ#" msgid "Page {page_number} of {page_count}" msgstr "Pägé {page_number} öf {page_count} Ⱡ'#" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "Ìnvöïçé #" @@ -6244,7 +6190,6 @@ msgstr "Däté öf Réfünd Ⱡ'#" msgid "Amount of Refund" msgstr "Àmöünt öf Réfünd Ⱡ'σ#" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Sérvïçé Féés (ïf äný) Ⱡ'σя#" @@ -6274,14 +6219,11 @@ msgstr "Çürrénçý #" msgid "Comments" msgstr "Çömménts #" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Ûnïvérsïtý Ⱡ#" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "Çöürsé Ⱡ'σяєм ιρѕ#" @@ -6376,7 +6318,7 @@ msgstr "Ýöü äré älréädý régïstéréd ïn çöürsé {course_id}. Ⱡ' msgid "Course added to cart." msgstr "Çöürsé äddéd tö çärt. Ⱡ'σя#" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "Dïsçöünt döés nöt éxïst ägäïnst çödé '{code}'. Ⱡ'σяєм ιρѕυм#" @@ -6422,7 +6364,6 @@ msgstr "" "Thé päýmént pröçéssör dïd nöt rétürn ä réqüïréd pärämétér: {0} Ⱡ'σяєм ιρѕυм " "∂σłσя#" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6613,7 +6554,6 @@ msgstr "" "Ìnsüffïçïént fünds ïn thé äççöünt. Pössïßlé fïx: rétrý wïth änöthér förm öf " "päýmént Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Ûnknöwn réäsön Ⱡ'#" @@ -7086,7 +7026,6 @@ msgstr "Päýmént çönfïrmätïön Ⱡ'σя#" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Täké phötö Ⱡ#" @@ -7193,7 +7132,6 @@ msgstr "Fülfïlléd Tïmé: Ⱡ'#" msgid "Refund Request Time:" msgstr "Réfünd Réqüést Tïmé: Ⱡ'σя#" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Ýöür Pässwörd Rését ïs Çömplété Ⱡ'σяєм ι#" @@ -7411,7 +7349,6 @@ msgstr "Délété ärtïçlé Ⱡ'#" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Délété Ⱡ'σяєм ιρѕ#" @@ -7470,12 +7407,9 @@ msgstr "Prévïéw #" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7495,10 +7429,7 @@ msgstr "Wïkï Prévïéw Ⱡ#" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "wïndöw öpén Ⱡ#" @@ -7540,7 +7471,7 @@ msgstr "Àütö lög: #" msgid "Change" msgstr "Çhängé Ⱡ'σяєм ιρѕ#" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Mérgé séléçtéd wïth çürrént... Ⱡ'σяєм #" @@ -7552,11 +7483,11 @@ msgstr "Swïtçh tö séléçtéd vérsïön Ⱡ'σяєм#" msgid "Wiki Revision Preview" msgstr "Wïkï Révïsïön Prévïéw Ⱡ'σя#" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Bäçk tö hïstörý vïéw Ⱡ'σя#" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Swïtçh tö thïs vérsïön Ⱡ'σяє#" @@ -7581,7 +7512,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Àftér thïs, ït's ïmpörtänt tö dö ä mänüäl révïéw. Ⱡ'σяєм ιρѕυм ∂#" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Çréäté néw mérgéd vérsïön Ⱡ'σяєм#" @@ -7828,12 +7759,9 @@ msgstr "Ýöü çännöt çréäté twö çöhörts wïth thé sämé nämé Ⱡ #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "üsérnämé@dömäïn.çöm Ⱡ'σя#" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -7844,24 +7772,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Pässwörd #" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" -"Ìt lööks lïké {email_address} änd {username} ßélöng tö än éxïstïng äççöünt. " -"Trý ägäïn wïth ä dïfférént émäïl äddréss änd üsérnämé. Ⱡ'σяєм ιρѕυм ∂σłσя " -"ѕιт αмєт, ¢σηѕє#" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7943,8 +7860,6 @@ msgstr "Pléäsé séléçt ýöür Çöüntrý. Ⱡ'σяєм#" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Hönör Çödé Ⱡ#" @@ -7956,12 +7871,10 @@ msgstr "Hönör Çödé Ⱡ#" msgid "Terms of Service and Honor Code" msgstr "Térms öf Sérvïçé änd Hönör Çödé Ⱡ'σяєм ι#" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "Ì ägréé tö thé {platform_name} {terms_of_service}. Ⱡ'σяє#" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "Ýöü müst ägréé tö thé {platform_name} {terms_of_service}. Ⱡ'σяєм #" @@ -7971,11 +7884,9 @@ msgstr "Ýöü müst ägréé tö thé {platform_name} {terms_of_service}. Ⱡ' #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Térms öf Sérvïçé Ⱡ'σ#" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Ìnvälïd çöürsé üpdäté ïd. Ⱡ'σяєм#" @@ -8110,7 +8021,6 @@ msgstr "" "nümßér. Pléäsé çhängé éïthér örgänïzätïön ör çöürsé nümßér tö ßé ünïqüé. " "Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιρ#" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -8145,10 +8055,13 @@ msgid "must have at least one group" msgstr "müst hävé ät léäst öné gröüp Ⱡ'σяєм #" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." msgstr "" -"Thïs Gröüp Çönfïgürätïön ïs älréädý ïn üsé änd çännöt ßé rémövéd. Ⱡ'σяєм " -"ιρѕυм ∂σłσя #" +"Thïs gröüp çönfïgürätïön ïs ïn üsé änd çännöt ßé délétéd. Ⱡ'σяєм ιρѕυм ∂σł#" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "Thïs çöntént gröüp ïs ïn üsé änd çännöt ßé délétéd. Ⱡ'σяєм ιρѕυм ∂#" #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -8377,8 +8290,7 @@ msgstr "Pägé nöt föünd Ⱡ'#" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -8390,13 +8302,8 @@ msgstr "Löädïng #" msgid "close" msgstr "çlösé Ⱡ'σяєм ι#" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -8416,7 +8323,7 @@ msgstr "Dïsmïss #" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Séttïngs #" @@ -8425,13 +8332,11 @@ msgstr "Séttïngs #" msgid "Error:" msgstr "Érrör: Ⱡ'σяєм ιρѕ#" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Örgänïzätïön: Ⱡ'#" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -8446,10 +8351,8 @@ msgstr "Çöürsés #" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "É-mäïl Ⱡ'σяєм ιρѕ#" @@ -8459,7 +8362,7 @@ msgstr "É-mäïl Ⱡ'σяєм ιρѕ#" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "éxämplé: üsérnämé@dömäïn.çöm Ⱡ'σяєм #" @@ -8491,14 +8394,13 @@ msgstr "éxämplé: Jäné Döé Ⱡ'σ#" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Püßlïç Ûsérnämé Ⱡ'#" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "éxämplé: JänéDöé Ⱡ'σ#" @@ -8512,7 +8414,7 @@ msgid "Requirements" msgstr "Réqüïréménts Ⱡ#" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Détäïls #" @@ -8541,13 +8443,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Prïväçý Pölïçý Ⱡ'#" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Hélp Ⱡ'σяєм#" @@ -8568,7 +8468,6 @@ msgstr "Sörrý, théré wäs än érrör whén trýïng tö énröll ýöü Ⱡ msgid "Now choose your course track:" msgstr "Nöw çhöösé ýöür çöürsé träçk: Ⱡ'σяєм #" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "Pürsüé ä Vérïfïéd Çértïfïçäté Ⱡ'σяєм #" @@ -8665,7 +8564,7 @@ msgstr "Néw Ⱡ'σя#" msgid "Dashboard" msgstr "Däshßöärd #" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "édït Ⱡ'σяєм#" @@ -8709,7 +8608,7 @@ msgstr "Lïnk Ⱡ'σяєм#" msgid "Order History" msgstr "Ördér Hïstörý Ⱡ'#" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Rését Pässwörd Ⱡ'#" @@ -8717,7 +8616,7 @@ msgstr "Rését Pässwörd Ⱡ'#" msgid "Current Courses" msgstr "Çürrént Çöürsés Ⱡ'#" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "Lööks lïké ýöü hävén't énrölléd ïn äný çöürsés ýét. Ⱡ'σяєм ιρѕυм ∂#" @@ -8753,7 +8652,7 @@ msgstr "" "Àn émäïl häs ßéén sént tö {email}. Föllöw thé lïnk ïn thé émäïl tö çhängé " "ýöür pässwörd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Çhängé Émäïl Ⱡ#" @@ -8810,15 +8709,6 @@ msgstr "Çhängé Mý Nämé Ⱡ'#" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Ûnénröll #" @@ -8886,7 +8776,7 @@ msgstr "Stüdénts réjéçtéd: Ⱡ'σя#" msgid "Debug: " msgstr "Déßüg: #" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Éxtérnäl Àüthéntïçätïön fäïléd Ⱡ'σяєм #" @@ -8923,7 +8813,7 @@ msgstr "Süßmïttéd #" msgid "Puzzle Leaderboard" msgstr "Püzzlé Léädérßöärd Ⱡ'σ#" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "Àßöüt édX #" @@ -8978,13 +8868,11 @@ msgstr "Néws Ⱡ'σяєм#" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Çöntäçt #" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FÀQ Ⱡ'σя#" @@ -9006,31 +8894,31 @@ msgstr "Föllöw Ûs #" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twïttér #" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Fäçéßöök #" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Méétüp Ⱡ'σяєм ιρѕ#" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LïnkédÌn #" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Gööglé+ #" @@ -9047,7 +8935,6 @@ msgid "Android app on Google Play" msgstr "Àndröïd äpp ön Gööglé Pläý Ⱡ'σяєм#" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Jößs Ⱡ'σяєм#" @@ -9065,7 +8952,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "Pöwéréd ßý Öpén édX Ⱡ'σя#" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Pässwörd Rését Ⱡ'#" @@ -9096,7 +8982,7 @@ msgstr "Rését Mý Pässwörd Ⱡ'σ#" msgid "Email is incorrect." msgstr "Émäïl ïs ïnçörréçt. Ⱡ'σя#" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Hélp #" @@ -9170,8 +9056,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -9327,7 +9211,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Hélpfül Ìnförmätïön Ⱡ'σя#" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Lögïn vïä ÖpénÌD Ⱡ'σ#" @@ -9534,7 +9418,7 @@ msgstr "Räw dätä: #" msgid "Accepted" msgstr "Àççéptéd #" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Érrör Ⱡ'σяєм ι#" @@ -9555,17 +9439,15 @@ msgstr "Çönfïrm #" msgid "Reject" msgstr "Réjéçt Ⱡ'σяєм ιρѕ#" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Höw ït Wörks Ⱡ#" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Fïnd Çöürsés Ⱡ#" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Sçhööls & Pärtnérs Ⱡ'σ#" @@ -9585,13 +9467,11 @@ msgstr "Sïgn öüt #" msgid "Shopping Cart" msgstr "Shöppïng Çärt Ⱡ'#" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Régïstér #" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "Sïgn ïn #" @@ -9611,7 +9491,7 @@ msgstr "Glößäl Nävïgätïön Ⱡ'σ#" msgid "Schools" msgstr "Sçhööls #" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Régïstér Nöw Ⱡ#" @@ -9684,7 +9564,6 @@ msgstr "" "ιρѕυм ∂σłσя #" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9697,7 +9576,6 @@ msgid "Enter a public username:" msgstr "Éntér ä püßlïç üsérnämé: Ⱡ'σяє#" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" "Wïll ßé shöwn ïn äný dïsçüssïöns ör förüms ýöü pärtïçïpäté ïn Ⱡ'σяєм ιρѕυм " @@ -9841,11 +9719,11 @@ msgstr "" "Pléäsé çömplété thé föllöwïng fïélds tö régïstér för än äççöünt. Ⱡ'σяєм " "ιρѕυм ∂σłσя #" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Néédéd för äný çértïfïçätés ýöü mäý éärn Ⱡ'σяєм ιρѕυ#" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "çännöt ßé çhängéd lätér Ⱡ'σяє#" @@ -9901,12 +9779,12 @@ msgstr "" "{dashboard_link_start}héré{link_end} tö rétürn tö ýöür däshßöärd. Ⱡ'σяєм " "ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Prévïöüs #" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Néxt Ⱡ'σяєм#" @@ -9915,15 +9793,15 @@ msgstr "Néxt Ⱡ'σяєм#" msgid "Sign Up for {platform_name}" msgstr "Sïgn Ûp för {platform_name} Ⱡ'#" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "é.g. ýöürnämé@dömäïn.çöm Ⱡ'σяє#" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "é.g. ýöürnämé (shöwn ön förüms) Ⱡ'σяєм ι#" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "é.g. Ýöür Nämé (för çértïfïçätés) Ⱡ'σяєм ι#" @@ -10026,7 +9904,7 @@ msgstr "Délété Stüdént Stäté Ⱡ'σя#" msgid "Rescore Student Submission" msgstr "Résçöré Stüdént Süßmïssïön Ⱡ'σяєм#" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Mödülé Fïélds Ⱡ'#" @@ -10082,7 +9960,6 @@ msgstr "Stäffïng änd Énröllmént Ⱡ'σяє#" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Gït Lögs #" @@ -10162,6 +10039,18 @@ msgstr "Délété çöürsé fröm sïté Ⱡ'σяє#" msgid "Platform Version" msgstr "Plätförm Vérsïön Ⱡ'σ#" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "prévïöüs #" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "Pägé {current_page} öf {total_pages} Ⱡ'#" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "néxt Ⱡ'σяєм#" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -10176,6 +10065,11 @@ msgstr "Däté Ⱡ'σяєм#" msgid "Git Action" msgstr "Gït Àçtïön Ⱡ#" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "Nö gït ïmpört lögs hävé ßéén réçördéd. Ⱡ'σяєм ιρѕ#" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -10335,7 +10229,7 @@ msgstr "Gö ßäçk tö stärt öf tränsçrïpt. Ⱡ'σяєм ι#" msgid "Download video" msgstr "Döwnlöäd vïdéö Ⱡ'#" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Döwnlöäd tränsçrïpt Ⱡ'σя#" @@ -10351,7 +10245,6 @@ msgstr "Ýöür wörds: Ⱡ#" msgid "Total number of words:" msgstr "Tötäl nümßér öf wörds: Ⱡ'σяє#" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Öpén Çälçülätör Ⱡ'#" @@ -10716,8 +10609,6 @@ msgstr "{chapter}, çürrént çhäptér Ⱡ'σя#" msgid "due {date}" msgstr "düé {date} #" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10780,12 +10671,10 @@ msgstr "Övérvïéw #" msgid "Share with friends and family!" msgstr "Shäré wïth frïénds änd fämïlý! Ⱡ'σяєм #" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "Twéét thät ýöü'vé régïstéréd för thïs çöürsé Ⱡ'σяєм ιρѕυм#" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -10848,6 +10737,17 @@ msgstr "" msgid "Additional Resources" msgstr "Àddïtïönäl Résöürçés Ⱡ'σя#" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Énröll Ⱡ'σяєм ιρѕ#" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "énröll Ⱡ'σяєм ιρѕ#" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "Vïéw thïs çöürsé äs: Ⱡ'σя#" @@ -10930,8 +10830,8 @@ msgid "No content has been added to this course" msgstr "Nö çöntént häs ßéén äddéd tö thïs çöürsé Ⱡ'σяєм ιρѕυ#" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" -msgstr "Çöürsé Ûtïlïtïés Nävïgätïön Ⱡ'σяєм#" +msgid "Course Utilities" +msgstr "Çöürsé Ûtïlïtïés Ⱡ'σ#" #: lms/templates/courseware/error-message.html msgid "" @@ -10972,11 +10872,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Vïéw Ûpdätés ïn Stüdïö Ⱡ'σяє#" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Çöürsé Ûpdätés & Néws Ⱡ'σяє#" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Händöüt Nävïgätïön Ⱡ'σ#" @@ -10984,7 +10884,6 @@ msgstr "Händöüt Nävïgätïön Ⱡ'σ#" msgid "Course Handouts" msgstr "Çöürsé Händöüts Ⱡ'#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "Légäçý Ìnstrüçtör Däshßöärd Ⱡ'σяєм#" @@ -11042,7 +10941,6 @@ msgstr "Mänägé Gröüps Ⱡ'#" msgid "Grade Downloads" msgstr "Grädé Döwnlöäds Ⱡ'#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -11084,7 +10982,6 @@ msgstr "" "Thé ässïgnménts défïnéd för thïs çöürsé shöüld mätçh thé önés störéd ïn thé " "grädéßöök, för thïs tö wörk pröpérlý! Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Grädéßöök nämé: Ⱡ'#" @@ -11098,7 +10995,6 @@ msgstr "Àssïgnmént nämé: Ⱡ'σ#" msgid "Course-specific grade adjustment" msgstr "Çöürsé-spéçïfïç grädé ädjüstmént Ⱡ'σяєм ι#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -11139,7 +11035,6 @@ msgstr "Énröllmént Dätä Ⱡ'#" msgid "Pull enrollment from remote gradebook" msgstr "Püll énröllmént fröm rémöté grädéßöök Ⱡ'σяєм ιρѕ#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Séçtïön: #" @@ -11192,7 +11087,6 @@ msgstr "Däý Ⱡ'σя#" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Stüdénts #" @@ -11287,7 +11181,6 @@ msgstr "Dürätïön (séç) Ⱡ'#" msgid "Task Progress" msgstr "Täsk Prögréss Ⱡ'#" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "ünknöwn #" @@ -11376,8 +11269,20 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Çöürsé Prögréss för Stüdént '{username}' ({email}) Ⱡ'σяєм ιρѕ#" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "Döwnlöäd ýöür çértïfïçäté Ⱡ'σяєм#" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" +"Ýöü çän döwnlöäd ýöür çértïfïçäté äs ä PDF. Ýöü çän thén prïnt ýöür " +"çértïfïçäté ör shäré ït wïth öthérs. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢ση#" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "Döwnlöäd Ýöür Çértïfïçäté Ⱡ'σяєм#" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "Çréäté Ýöür Çértïfïçäté Ⱡ'σяє#" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -11460,7 +11365,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "Ýöür {cert_name_short} ïs Générätïng Ⱡ'σяє#" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Thïs lïnk wïll öpén/döwnlöäd ä PDF döçümént Ⱡ'σяєм ιρѕυм#" @@ -11469,25 +11373,6 @@ msgstr "Thïs lïnk wïll öpén/döwnlöäd ä PDF döçümént Ⱡ'σяєм ι msgid "Download {cert_name_short} (PDF)" msgstr "Döwnlöäd {cert_name_short} (PDF) Ⱡ'σ#" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "Àdd Çértïfïçäté tö LïnkédÌn Pröfïlé Ⱡ'σяєм ιρ#" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "Shäré ön LïnkédÌn Ⱡ'σ#" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Sïnçé wé dïd nöt hävé ä välïd sét öf vérïfïçätïön phötös fröm ýöü whén ýöür " -"{cert_name_long} wäs générätéd, wé çöüld nöt gränt ýöü ä vérïfïéd " -"{cert_name_short}. Àn hönör çödé {cert_name_short} häs ßéén gräntéd ïnstéäd." -" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłι#" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "Döwnlöäd Ýöür {cert_name_short} (PDF) Ⱡ'σяє#" @@ -11508,11 +11393,29 @@ msgstr "Döwnlöäd Ýöür ÌD Vérïfïéd {cert_name_short} (PDF) Ⱡ'σяє msgid "Complete our course feedback survey" msgstr "Çömplété öür çöürsé féédßäçk sürvéý Ⱡ'σяєм ιρ#" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "Àdd Çértïfïçäté tö LïnkédÌn Pröfïlé Ⱡ'σяєм ιρ#" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "Shäré ön LïnkédÌn Ⱡ'σ#" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Sïnçé wé dïd nöt hävé ä välïd sét öf vérïfïçätïön phötös fröm ýöü whén ýöür " +"{cert_name_long} wäs générätéd, wé çöüld nöt gränt ýöü ä vérïfïéd " +"{cert_name_short}. Àn hönör çödé {cert_name_short} häs ßéén gräntéd ïnstéäd." +" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłι#" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "{course_number} {course_name} Hömé Pägé Ⱡ'σ#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Çövér Ìmägé Ⱡ'σя#" @@ -11521,11 +11424,6 @@ msgstr "{course_number} {course_name} Çövér Ìmägé Ⱡ'σя#" msgid "Your verification is pending" msgstr "Ýöür vérïfïçätïön ïs péndïng Ⱡ'σяєм #" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Énrölléd äs: Ⱡ'#" @@ -11546,7 +11444,6 @@ msgstr "Vérïfïéd: Péndïng Vérïfïçätïön Ⱡ'σяєм #" msgid "You're enrolled as a verified student" msgstr "Ýöü'ré énrölléd äs ä vérïfïéd stüdént Ⱡ'σяєм ιρѕ#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "ÌD Vérïfïéd Rïßßön/Bädgé Ⱡ'σяє#" @@ -11556,7 +11453,6 @@ msgstr "ÌD Vérïfïéd Rïßßön/Bädgé Ⱡ'σяє#" msgid "Verified" msgstr "Vérïfïéd #" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Ýöü'ré énrölléd äs än hönör çödé stüdént Ⱡ'σяєм ιρѕυ#" @@ -11617,7 +11513,6 @@ msgstr "Ýöü stïll nééd tö vérïfý för thïs çöürsé. Ⱡ'σяєм msgid "Verify Now" msgstr "Vérïfý Nöw Ⱡ#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "Ýöü hävé älréädý vérïfïéd ýöür ÌD! Ⱡ'σяєм ιρ#" @@ -11685,34 +11580,25 @@ msgstr "" "{unenroll_link_start}ünénröll{unenroll_link_end} fröm thïs çöürsé Ⱡ'σяєм " "ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт,#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Vïéw Àrçhïvéd Çöürsé Ⱡ'σя#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Vïéw Çöürsé Ⱡ#" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" "Àré ýöü süré ýöü wänt tö ünénröll fröm thé pürçhäséd çöürsé Ⱡ'σяєм ιρѕυм " "∂σłσ#" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "Àré ýöü süré ýöü wänt tö ünénröll fröm Ⱡ'σяєм ιρѕ#" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " @@ -11721,12 +11607,10 @@ msgstr "" "Àré ýöü süré ýöü wänt tö ünénröll fröm thé vérïfïéd {cert_name_long} träçk " "öf Ⱡ'σяєм ιρѕυм ∂σłσя #" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Émäïl Séttïngs Ⱡ'#" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11745,7 +11629,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: Ré-vérïfý ßý {date} Ⱡ'σя#" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Nötïfïçätïön Àçtïöns Ⱡ'σя#" @@ -11792,7 +11675,6 @@ msgstr "Dénïéd: #" msgid "Approved:" msgstr "Àpprövéd: #" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "ÌD-Vérïfïçätïön Stätüs Ⱡ'σяє#" @@ -12004,9 +11886,7 @@ msgstr "Édïtïng pöst Ⱡ#" msgid "Edit post title" msgstr "Édït pöst tïtlé Ⱡ'#" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Tïtlé Ⱡ'σяєм ι#" @@ -12018,7 +11898,6 @@ msgstr "Ûpdäté pöst Ⱡ#" msgid "Show Comments (%(num_comments)s)" msgstr "Shöw Çömménts (%(num_comments)s) Ⱡ'σя#" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Àdd ä çömmént Ⱡ'#" @@ -12039,7 +11918,6 @@ msgstr "éndörséd %(time_ago)s ßý %(user)s Ⱡ'σя#" msgid "endorsed %(time_ago)s" msgstr "éndörséd %(time_ago)s Ⱡ#" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "Répörtéd #" @@ -12213,7 +12091,6 @@ msgstr "Àdd Pöst #" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "Pöst týpé: Ⱡ#" @@ -12234,7 +12111,6 @@ msgstr "" msgid "Topic Area:" msgstr "Töpïç Àréä: Ⱡ#" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "Fïltér töpïçs Ⱡ'#" @@ -12350,7 +12226,6 @@ msgstr "" msgid "User Profile" msgstr "Ûsér Pröfïlé Ⱡ#" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "… #" @@ -13251,8 +13126,6 @@ msgstr "Fläg äs ïnäppröprïäté çöntént för lätér révïéw Ⱡ'σя msgid "Skip" msgstr "Skïp Ⱡ'σяєм#" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -13314,12 +13187,10 @@ msgstr "Çöürsé Dïspläý Nämé: Ⱡ'σя#" msgid "Has the course started?" msgstr "Häs thé çöürsé stärtéd? Ⱡ'σяє#" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Ýés Ⱡ'σя#" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Nö Ⱡ'#" @@ -13496,7 +13367,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "Çréäté Énröllmént Çödés Ⱡ'σяє#" @@ -13656,7 +13526,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "Pléäsé éntér thé çömpäný çöntäçt émäïl Ⱡ'σяєм ιρѕ#" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "Pléäsé éntér thé välïd émäïl äddréss Ⱡ'σяєм ιρ#" @@ -13726,7 +13595,6 @@ msgstr "Pléäsé éntér thé nümérïç välüé för dïsçöünt Ⱡ'σяє msgid "Edit Coupon" msgstr "Édït Çöüpön Ⱡ#" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "Ûpdäté Çöüpön Ⱡ'#" @@ -13761,9 +13629,6 @@ msgstr "" "єιυѕмσ∂ т#" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -13772,15 +13637,10 @@ msgstr "" "Ⱡ'σяєм ιρѕυм ∂σłσ#" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Stüdént Émäïl ör Ûsérnämé Ⱡ'σяєм#" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Çhöösé thé grädéd ünït: Ⱡ'σяє#" @@ -13860,7 +13720,6 @@ msgstr "Généräté Régïsträtïön Çödé Mödäl Ⱡ'σяєм ι#" msgid "* Required Information" msgstr "* Réqüïréd Ìnförmätïön Ⱡ'σяє#" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "Örgänïzätïön Nämé Ⱡ'σ#" @@ -13982,7 +13841,6 @@ msgstr "Löädïng prößlém lïst... Ⱡ'σяє#" msgid "Gender Distribution" msgstr "Géndér Dïstrïßütïön Ⱡ'σя#" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Ìnstrüçtör Däshßöärd Ⱡ'σя#" @@ -13995,7 +13853,6 @@ msgstr "Révért tö Légäçý Däshßöärd Ⱡ'σяєм#" msgid "Batch Enrollment" msgstr "Bätçh Énröllmént Ⱡ'σ#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -14011,12 +13868,10 @@ msgstr "" "Ýöü wïll nöt gét nötïfïçätïön för émäïls thät ßöünçé, sö pléäsé döüßlé-çhéçk" " spéllïng. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Émäïl Àddréssés/Ûsérnämés Ⱡ'σяєм#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Àütö Énröll Ⱡ#" @@ -14047,12 +13902,10 @@ msgstr "" "Çhéçkïng thïs ßöx häs nö éfféçt ïf 'Ûnénröll' ïs séléçtéd. Ⱡ'σяєм ιρѕυм " "∂σłσ#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Nötïfý üsérs ßý émäïl Ⱡ'σя#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -14061,10 +13914,6 @@ msgstr "" "Ìf thïs öptïön ïs çhéçkéd, üsérs wïll réçéïvé än émäïl " "nötïfïçätïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Énröll Ⱡ'σяєм ιρѕ#" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "Régïstér/Énröll Stüdénts Ⱡ'σяє#" @@ -14290,7 +14139,6 @@ msgstr "" "Ýöü çän çlïçk ön äný öf thé ßärs tö lïst thé stüdénts thät öpénéd thé " "süßséçtïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "Ýöü çän älsö döwnlöäd thïs dätä äs ä ÇSV fïlé. Ⱡ'σяєм ιρѕυм #" @@ -14330,14 +14178,12 @@ msgstr "Döwnlöäd Stüdént Öpénéd äs ä ÇSV Ⱡ'σяєм ι#" msgid "Download Student Grades as a CSV" msgstr "Döwnlöäd Stüdént Grädés äs ä ÇSV Ⱡ'σяєм ι#" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" "Thïs ïs ä pärtïäl lïst, tö vïéw äll stüdénts döwnlöäd äs ä çsv. Ⱡ'σяєм ιρѕυм" " ∂σłσя#" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Sénd Émäïl Ⱡ#" @@ -14350,12 +14196,10 @@ msgstr "Sénd tö: #" msgid "Myself" msgstr "Mýsélf Ⱡ'σяєм ιρѕ#" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Stäff änd ïnstrüçtörs Ⱡ'σя#" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Àll (stüdénts, stäff änd ïnstrüçtörs) Ⱡ'σяєм ιρѕ#" @@ -14452,7 +14296,6 @@ msgstr "" msgid "Show Email Task History" msgstr "Shöw Émäïl Täsk Hïstörý Ⱡ'σяє#" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "Sét Çöürsé Mödé Prïçé Ⱡ'σя#" @@ -14494,21 +14337,18 @@ msgstr "Stüdént Prögréss Pägé Ⱡ'σя#" msgid "Student-specific grade adjustment" msgstr "Stüdént-spéçïfïç grädé ädjüstmént Ⱡ'σяєм ι#" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" "Spéçïfý ä prößlém ïn thé çöürsé héré wïth ïts çömplété löçätïön: Ⱡ'σяєм " "ιρѕυм ∂σłσя #" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Prößlém löçätïön Ⱡ'σ#" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -14915,7 +14755,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "Bïllïng Détäïls Ⱡ'#" @@ -14940,7 +14779,6 @@ msgstr "Pürçhäsïng örgänïzätïön Ⱡ'σяє#" msgid "Purchase order number (if any)" msgstr "Pürçhäsé ördér nümßér (ïf äný) Ⱡ'σяєм #" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "émäïl@éxämplé.çöm Ⱡ'σ#" @@ -15143,15 +14981,10 @@ msgid " {course_name} " msgstr " {course_name} Ⱡ'σяєм ι#" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "Prïçé pér stüdént: Ⱡ'σ#" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -15280,7 +15113,6 @@ msgstr "" "{link_start}däshßöärd{link_end} tö séé thé çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " "αмє#" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -15308,7 +15140,6 @@ msgstr "çödé häs ßéén äpplïéd Ⱡ'σя#" msgid "TOTAL:" msgstr "TÖTÀL: Ⱡ'σяєм ιρѕ#" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " @@ -15318,12 +15149,10 @@ msgstr "" "ßïllïng détäïls änd régïsträtïön çödés för stüdénts. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " "αмєт, ¢σηѕє¢тєт#" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "Àftér thïs pürçhäsé ïs çömplété, Ⱡ'σяєм ι#" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "wïll ßé énrölléd ïn thïs çöürsé. Ⱡ'σяєм ι#" @@ -15384,12 +15213,10 @@ msgstr "" "héré för pössïßlé üsé ßý ïnställätïöns öf Öpén édX. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт " "αмєт, ¢σηѕє¢тєтυ#" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "Blög Ⱡ'σяєм#" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "Dönäté Ⱡ'σяєм ιρѕ#" @@ -15407,14 +15234,11 @@ msgstr "" "éxpört çöntröls, änd wé çännöt ällöw ýöü tö äççéss thïs çöürsé. Ⱡ'σяєм ιρѕυм" " ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη#" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Médïä Kït #" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Ìn thé Préss Ⱡ#" @@ -15741,7 +15565,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -15751,19 +15574,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Rétäké Ⱡ'σяєм ιρѕ#" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "Lööks gööd Ⱡ#" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Tïps ön täkïng ä süççéssfül phötö Ⱡ'σяєм ι#" @@ -15785,7 +15605,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Önçé ïn pösïtïön, üsé thé çämérä ßüttön Ⱡ'σяєм ιρѕ#" @@ -15796,19 +15615,16 @@ msgstr "tö çäptüré ýöür pïçtüré Ⱡ'σяє#" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Ûsé thé çhéçkmärk ßüttön Ⱡ'σяє#" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "önçé ýöü äré häppý wïth thé phötö Ⱡ'σяєм ι#" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Çömmön Qüéstïöns Ⱡ'σ#" @@ -15828,7 +15644,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "Whät dö ýöü dö wïth thïs pïçtüré? Ⱡ'σяєм ι#" @@ -15916,7 +15731,6 @@ msgstr "Çömplété ýöür öthér ré-vérïfïçätïöns Ⱡ'σяєм ιρ# #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Rétürn tö whéré ýöü léft öff Ⱡ'σяєм #" @@ -15934,15 +15748,10 @@ msgstr "" "Ýöü çürréntlý nééd tö ré-vérïfý för thé föllöwïng çöürsés: Ⱡ'σяєм ιρѕυм " "∂σłσ#" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "Ré-vérïfý ßý {date} Ⱡ'σ#" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "Ré-vérïfý för {course_number} Ⱡ'σ#" @@ -16218,7 +16027,6 @@ msgstr "" "Pléäsé révïéw thé phötös änd vérïfý thät théý méét thé réqüïréménts lïstéd " "ßélöw. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -16232,7 +16040,6 @@ msgstr "Bé wéll lït Ⱡ#" msgid "Show your whole face" msgstr "Shöw ýöür whölé fäçé Ⱡ'σя#" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -16304,7 +16111,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Rétürn tö Ýöür Däshßöärd Ⱡ'σяє#" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "Ré-Vérïfïçätïön Fäïléd Ⱡ'σяє#" @@ -16323,9 +16129,6 @@ msgstr "" "Pléäsé çöntäçt süppört ïf ýöü ßélïévé thïs méssägé tö ßé ïn érrör. Ⱡ'σяєм " "ιρѕυм ∂σłσя #" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(äçtïvé){span_end} Ⱡ'#" @@ -16443,8 +16246,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "Çöntäçt {platform_name} Süppört Ⱡ'σя#" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Fïlés & Ûplöäds Ⱡ'σ#" @@ -16464,8 +16266,7 @@ msgstr "Çöntént #" msgid "Page Actions" msgstr "Pägé Àçtïöns Ⱡ#" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Ûplöäd Néw Fïlé Ⱡ'#" @@ -16554,7 +16355,7 @@ msgstr "Ýöür fïlé häs ßéén délétéd. Ⱡ'σяєм#" msgid "close alert" msgstr "çlösé älért Ⱡ#" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Çöürsé Çhéçklïsts Ⱡ'σ#" @@ -16595,7 +16396,6 @@ msgid "{studio_name} checklists" msgstr "{studio_name} çhéçklïsts Ⱡ'#" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Düplïçäté #" @@ -16608,7 +16408,7 @@ msgid "Delete this component" msgstr "Délété thïs çömpönént Ⱡ'σя#" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "Dräg tö réördér Ⱡ'#" @@ -16752,7 +16552,7 @@ msgstr "" "thé örïgïnäl çöürsé nämé.) Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Örgänïzätïön Ⱡ#" @@ -16762,7 +16562,6 @@ msgstr "Örgänïzätïön Ⱡ#" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "é.g. ÛnïvérsïtýX ör ÖrgänïzätïönX Ⱡ'σяєм ι#" @@ -16775,8 +16574,6 @@ msgstr "" "thé sämé äs thé örïgïnäl örgänïzätïön nämé.) Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тє#" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "Nöté: Nö späçés ör spéçïäl çhäräçtérs äré ällöwéd. Ⱡ'σяєм ιρѕυм ∂#" @@ -16865,7 +16662,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "Léärn möré äßöüt Çöürsé Ré-rüns Ⱡ'σяєм ι#" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Çöürsé Ûpdätés Ⱡ'#" @@ -16884,7 +16681,6 @@ msgstr "" "réspönd tö stüdént qüéstïöns. Ýöü ädd ör édït üpdätés ïn HTML. Ⱡ'σяєм ιρѕυм " "∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ #" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Çöürsé Öütlïné Ⱡ'#" @@ -16946,7 +16742,7 @@ msgstr "Vïéw Lïvé #" msgid "Course Start Date:" msgstr "Çöürsé Stärt Däté: Ⱡ'σ#" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "Édït Stärt Däté Ⱡ'#" @@ -17019,8 +16815,8 @@ msgstr "Léärn möré äßöüt thé çöürsé öütlïné Ⱡ'σяєм ιρ#" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Pägés Ⱡ'σяєм ι#" @@ -17042,11 +16838,11 @@ msgstr "" msgid "Show this page" msgstr "Shöw thïs pägé Ⱡ'#" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Shöw/hïdé pägé Ⱡ'#" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "Thïs pägé çännöt ßé réördéréd Ⱡ'σяєм #" @@ -17124,7 +16920,6 @@ msgstr "" "α∂ιριѕι¢ιηg #" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "çlösé mödäl Ⱡ#" @@ -17178,7 +16973,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Bäçk tö däshßöärd Ⱡ'σ#" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Çöürsé Éxpört Ⱡ'#" @@ -17335,8 +17130,7 @@ msgstr "Léärn möré äßöüt éxpörtïng ä çöürsé Ⱡ'σяєм ιρ#" msgid "Export Course to Git" msgstr "Éxpört Çöürsé tö Gït Ⱡ'σя#" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Éxpört tö Gït Ⱡ'#" @@ -17387,13 +17181,11 @@ msgstr "Ýöür çöürsé: Ⱡ#" msgid "Course git url:" msgstr "Çöürsé gït ürl: Ⱡ'#" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "Çöntént Gröüps Ⱡ'#" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "Éxpérïmént Gröüp Çönfïgürätïöns Ⱡ'σяєм ι#" @@ -17423,14 +17215,21 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" "Çlïçk {em_start}Néw çöntént gröüp{em_end} tö ädd ä néw çöntént gröüp. Tö " "édït thé nämé öf ä çöntént gröüp, hövér övér ïts ßöx änd çlïçk " -"{em_start}Édït{em_end}. Çöntént gröüps çännöt ßé délétéd. Ⱡ'σяєм ιρѕυм ∂σłσя" -" ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg #" +"{em_start}Édït{em_end}. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" +"Ýöü çän délété ä çöntént gröüp önlý ïf ït ïs nöt ïn üsé ßý ä ünït. Tö délété" +" ä çöntént gröüp, hövér övér ïts ßöx änd çlïçk thé délété ïçön. Ⱡ'σяєм ιρѕυм" +" ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂#" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "Léärn Möré Ⱡ#" @@ -17489,8 +17288,8 @@ msgid "Course Team" msgstr "Çöürsé Téäm Ⱡ#" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Àdvänçéd Séttïngs Ⱡ'σ#" @@ -17514,7 +17313,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "{studio_name}'s Mäný Féätürés Ⱡ'σя#" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "{studio_name} Hélps Ýöü Kéép Ýöür Çöürsés Örgänïzéd Ⱡ'σяєм ιρѕυ#" @@ -17571,7 +17370,6 @@ msgstr "" "Ýöü dön't hävé tö hävé ït äll döné ät önçé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕ#" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "Léärnïng ïs Möré thän Jüst Léçtürés Ⱡ'σяєм ιρ#" @@ -17623,7 +17421,7 @@ msgstr "" " öf prößléms tö çhälléngé ýöür léärnérs. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢т#" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -17747,7 +17545,7 @@ msgstr "" "Stüdénts wïll nöt ßé äßlé tö äççéss thïs çömpönént. Ré-édït ýöür çömpönént " "tö fïx thé érrör. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Çöürsé Ìmpört Ⱡ'#" @@ -17913,8 +17711,7 @@ msgstr "" "stüdénts' prößlém sçörés. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " "α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσ#" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "{studio_name} Hömé #" @@ -17930,7 +17727,7 @@ msgstr "Néw Lïßrärý Ⱡ#" msgid "Email staff to create course" msgstr "Émäïl stäff tö çréäté çöürsé Ⱡ'σяєм #" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "Pléäsé çörréçt thé hïghlïghtéd fïélds ßélöw. Ⱡ'σяєм ιρѕυм#" @@ -17978,7 +17775,7 @@ msgstr "" "Thé ünïqüé nümßér thät ïdéntïfïés ýöür çöürsé wïthïn ýöür örgänïzätïön. " "Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -17990,7 +17787,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "Thé térm ïn whïçh ýöür çöürsé wïll rün. Ⱡ'σяєм ιρѕ#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Çréäté Ⱡ'σяєм ιρѕ#" @@ -18021,7 +17818,7 @@ msgstr "Thé püßlïç dïspläý nämé för ýöür lïßrärý. Ⱡ'σяєм msgid "The public organization name for your library." msgstr "Thé püßlïç örgänïzätïön nämé för ýöür lïßrärý. Ⱡ'σяєм ιρѕυм #" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "Thïs çännöt ßé çhängéd. Ⱡ'σяє#" @@ -18053,7 +17850,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "Çöürsés Béïng Pröçésséd Ⱡ'σяє#" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "Çöürsé Rün: Ⱡ#" @@ -18109,7 +17906,7 @@ msgstr "" "thé spéçïfïç çöürsé ýöü äré hélpïng tö äüthör. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "Çréäté Ýöür Fïrst Çöürsé Ⱡ'σяє#" @@ -18136,7 +17933,7 @@ msgstr "" "dürïng thé wörk wéék. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg " "єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт #" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "Ýöür Çöürsé Çréätör Réqüést Stätüs: Ⱡ'σяєм ιρ#" @@ -18144,7 +17941,7 @@ msgstr "Ýöür Çöürsé Çréätör Réqüést Stätüs: Ⱡ'σяєм ιρ#" msgid "Request the Ability to Create Courses" msgstr "Réqüést thé Àßïlïtý tö Çréäté Çöürsés Ⱡ'σяєм ιρѕ#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "Ýöür Çöürsé Çréätör Réqüést Stätüs Ⱡ'σяєм ιρ#" @@ -18161,7 +17958,7 @@ msgstr "" "téäm ïs häs çömplétéd évälüätïng ýöür réqüést. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσ#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "Ýöür Çöürsé Çréätör réqüést ïs: Ⱡ'σяєм ι#" @@ -18227,7 +18024,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "Géttïng Stärtéd wïth {studio_name} Ⱡ'σяє#" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "Ûsé öür féédßäçk tööl, Téndér, tö réqüést hélp Ⱡ'σяєм ιρѕυм #" @@ -18235,7 +18032,7 @@ msgstr "Ûsé öür féédßäçk tööl, Téndér, tö réqüést hélp Ⱡ'σ msgid "Request help with {studio_name}" msgstr "Réqüést hélp wïth {studio_name} Ⱡ'σя#" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "Çän Ì çréäté çöürsés ïn {studio_name}? Ⱡ'σяєм #" @@ -18309,7 +18106,7 @@ msgstr "Çöntént Lïßrärý Ⱡ'#" msgid "Add Component" msgstr "Àdd Çömpönént Ⱡ'#" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "Lïßrärý ÌD Ⱡ#" @@ -18381,7 +18178,7 @@ msgstr "Léärn möré äßöüt çöntént lïßrärïés Ⱡ'σяєм ιρ#" msgid "Sign In" msgstr "Sïgn Ìn #" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "Sïgn Ìn tö {studio_name} Ⱡ'#" @@ -18440,13 +18237,11 @@ msgstr "" msgid "Add User" msgstr "Àdd Ûsér #" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "Çürrént Rölé: Ⱡ'#" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "Ýöü! Ⱡ'σяєм#" @@ -18737,7 +18532,6 @@ msgstr "Bäsïç Ìnförmätïön Ⱡ'σ#" msgid "The nuts and bolts of your course" msgstr "Thé nüts änd ßölts öf ýöür çöürsé Ⱡ'σяєм ι#" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -18805,8 +18599,7 @@ msgstr "Fïrst däý thé çöürsé ßégïns Ⱡ'σяєм#" msgid "Course Start Time" msgstr "Çöürsé Stärt Tïmé Ⱡ'σ#" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "(ÛTÇ) Ⱡ'σяєм ι#" @@ -18899,7 +18692,6 @@ msgstr "" "Ìntrödüçtïöns, préréqüïsïtés, FÀQs thät äré üséd ön %s (förmättéd ïn HTML) " "Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Çöürsé Ìmägé Ⱡ#" @@ -19176,7 +18968,6 @@ msgstr "" "éxäms, änd spéçïfý höw müçh öf ä stüdént's grädé éäçh ässïgnmént týpé ïs " "wörth. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι#" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "Éxpänd ör Çölläpsé Ⱡ'σ#" @@ -19236,8 +19027,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "Léärn möré äßöüt téxtßööks Ⱡ'σяєм#" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "Vïdéö Ûplöäds Ⱡ'#" @@ -19476,7 +19266,7 @@ msgstr "Çöntäçt Ûs Ⱡ#" msgid "Current Course:" msgstr "Çürrént Çöürsé: Ⱡ'#" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "Nävïgätïön för {course_name} Ⱡ'σ#" @@ -19516,7 +19306,7 @@ msgstr "Lïßrärý #" msgid "Help & Account Navigation" msgstr "Hélp & Àççöünt Nävïgätïön Ⱡ'σяєм#" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "Çöntéxtüäl Önlïné Hélp Ⱡ'σяє#" @@ -19536,12 +19326,10 @@ msgstr "Ýöü'ré nöt çürréntlý sïgnéd ïn Ⱡ'σяєм #" msgid "Launch Latex Source Compiler" msgstr "Läünçh Lätéx Söürçé Çömpïlér Ⱡ'σяєм #" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "Héädïng 1 #" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "Éxplänätïön Ⱡ#" @@ -19566,7 +19354,7 @@ msgstr "Löökïng för hélp wïth {studio_name}? Ⱡ'σяєм#" msgid "Hide {studio_name} Help" msgstr "Hïdé {studio_name} Hélp Ⱡ'#" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "{studio_name} Döçüméntätïön Ⱡ'σ#" @@ -19588,7 +19376,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "Büïldïng änd Rünnïng än {platform_name} Çöürsé PDF Ⱡ'σяєм ιρѕ#" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "{studio_name} Àüthör Süppört Ⱡ'σ#" @@ -19642,11 +19430,11 @@ msgstr "" "çän üsé möré çömpléx féätürés lïké äddïng plügïns, métä dätä, rélätéd " "ärtïçlés étç... Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ι#" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Çönténts #" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Sümmärý #" @@ -20038,11 +19826,11 @@ msgstr "ättäçhmént révïsïöns Ⱡ'σя#" msgid "%s was successfully added." msgstr "%s wäs süççéssfüllý äddéd. Ⱡ'σяєм#" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Ýöür fïlé çöüld nöt ßé sävéd: %s Ⱡ'σяєм ι#" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.mo b/conf/locale/eo/LC_MESSAGES/djangojs.mo index f0a443cdf6..ad92ea2153 100644 Binary files a/conf/locale/eo/LC_MESSAGES/djangojs.mo and b/conf/locale/eo/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.po b/conf/locale/eo/LC_MESSAGES/djangojs.po index b289788c25..4c38d90176 100644 --- a/conf/locale/eo/LC_MESSAGES/djangojs.po +++ b/conf/locale/eo/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:12+0000\n" -"PO-Revision-Date: 2015-02-17 16:13:47.760661\n" +"POT-Creation-Date: 2015-02-23 18:46+0000\n" +"PO-Revision-Date: 2015-02-23 18:47:23.717807\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "Thïs lïnk wïll öpén ïn ä néw ßröwsér wïndöw/täß Ⱡ'σя #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Ûnknöwn #" @@ -89,17 +86,14 @@ msgstr "Ûnknöwn #" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Délété Ⱡ'σяєм ιρѕ#" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s pöïnt pössïßlé) Ⱡ'σя#" msgstr[1] "(%(num_points)s pöïnts pössïßlé) Ⱡ'σя#" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Ànswér: #" @@ -200,7 +193,6 @@ msgstr "Ànswér: #" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Hïdé Ànswér Ⱡ#" @@ -221,7 +213,6 @@ msgstr "Ànswér hïddén Ⱡ'#" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "ünänswéréd Ⱡ#" @@ -240,7 +231,6 @@ msgstr "Ýöü nééd tö pïçk ä rätïng ßéföré ýöü çän süßmït. #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" "Ýöür sçöré dïd nöt méét thé çrïtérïä tö mövé tö thé néxt stép. Ⱡ'σяєм ιρѕυм " @@ -320,11 +310,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Shöw Qüéstïön Ⱡ'#" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Hïdé Qüéstïön Ⱡ'#" @@ -332,7 +320,6 @@ msgstr "Hïdé Qüéstïön Ⱡ'#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Pärägräph #" @@ -343,21 +330,18 @@ msgstr "Préförmättéd Ⱡ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Héädïng 1 #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Héädïng 2 #" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Héädïng 3 #" @@ -1230,7 +1214,6 @@ msgstr "Rémövé lïnk Ⱡ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Répläçé äll Ⱡ#" @@ -1244,7 +1227,6 @@ msgstr "Répläçé wïth Ⱡ#" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1600,18 +1582,14 @@ msgstr "" "\n" "Çlïçk Çänçél tö rétürn tö thïs pägé wïthöüt séndïng ýöür ïnförmätïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ι#" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "ïnçörréçt #" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "çörréçt #" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "änswér Ⱡ'σяєм ιρѕ#" @@ -1738,7 +1716,6 @@ msgstr "HD ön Ⱡ'σяєм ι#" msgid "HD off" msgstr "HD öff Ⱡ'σяєм ιρѕ#" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Vïdéö pösïtïön Ⱡ'#" @@ -1785,7 +1762,6 @@ msgstr "Ûpdätïng wïth lätést lïßrärý çöntént Ⱡ'σяєм ιρ#" msgid "Creating missing groups" msgstr "Çréätïng mïssïng gröüps Ⱡ'σяє#" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Hïdé Dïsçüssïön Ⱡ'#" @@ -1795,13 +1771,9 @@ msgid "Show Discussion" msgstr "Shöw Dïsçüssïön Ⱡ'#" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1840,8 +1812,6 @@ msgstr "" "∂σłσя#" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2181,12 +2151,10 @@ msgid "All flags have been removed. To undo, uncheck the box." msgstr "" "Àll flägs hävé ßéén rémövéd. Tö ündö, ünçhéçk thé ßöx. Ⱡ'σяєм ιρѕυм ∂σ#" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Ýöü hävé älréädý répörtéd thïs ännötätïön. Ⱡ'σяєм ιρѕυ#" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Répört ännötätïön äs ïnäppröprïäté ör öffénsïvé. Ⱡ'σяєм ιρѕυм #" @@ -2227,7 +2195,6 @@ msgstr "Däté pöstéd Ⱡ#" msgid "More" msgstr "Möré Ⱡ'σяєм#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Mý Nötés #" @@ -2236,32 +2203,26 @@ msgstr "Mý Nötés #" msgid "Instructor" msgstr "Ìnstrüçtör Ⱡ#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Püßlïç Ⱡ'σяєм ιρѕ#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Séärçh Ⱡ'σяєм ιρѕ#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Ûsérs Ⱡ'σяєм ι#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Tägs Ⱡ'σяєм#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Ànnötätïön Téxt Ⱡ'#" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2366,7 +2327,6 @@ msgstr "Ûsérnämé #" msgid "Email" msgstr "Émäïl Ⱡ'σяєм ι#" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Révöké äççéss Ⱡ'#" @@ -2379,7 +2339,6 @@ msgstr "Éntér üsérnämé ör émäïl Ⱡ'σяє#" msgid "Please enter a username or email." msgstr "Pléäsé éntér ä üsérnämé ör émäïl. Ⱡ'σяєм ι#" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Érrör çhängïng üsér's pérmïssïöns. Ⱡ'σяєм ιρ#" @@ -2607,7 +2566,6 @@ msgstr "" msgid "Error sending email." msgstr "Érrör séndïng émäïl. Ⱡ'σя#" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Théré ïs nö émäïl hïstörý för thïs çöürsé. Ⱡ'σяєм ιρѕυ#" @@ -2624,10 +2582,6 @@ msgstr "" "Théré wäs än érrör ößtäïnïng émäïl çöntént hïstörý för thïs çöürsé. Ⱡ'σяєм " "ιρѕυм ∂σłσя ѕ#" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Pléäsé éntér ä stüdént émäïl äddréss ör üsérnämé. Ⱡ'σяєм ιρѕυм ∂#" @@ -2641,12 +2595,6 @@ msgstr "" "thé stüdént ïdéntïfïér ïs spélléd çörréçtlý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢ση#" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Pléäsé éntér ä prößlém löçätïön. Ⱡ'σяєм ι#" @@ -2939,7 +2887,6 @@ msgstr "Sýstém göt ïntö ïnvälïd stäté: <%= state %> Ⱡ'σяєм ιρ# msgid "System got into invalid state for submission: " msgstr "Sýstém göt ïntö ïnvälïd stäté för süßmïssïön: Ⱡ'σяєм ιρѕυм #" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Hïdé) Ⱡ'σяєм ιρѕ#" @@ -3033,7 +2980,7 @@ msgstr "éntér ïmägé désçrïptïön héré Ⱡ'σяєм #" msgid "enter link description here" msgstr "éntér lïnk désçrïptïön héré Ⱡ'σяєм#" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "éntér çödé héré Ⱡ'#" @@ -3106,6 +3053,10 @@ msgstr "" "émäïl tö çönfïrm ýöür émäïl äddréss çhängé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢т#" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "Föçüs gräßßér Ⱡ'#" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3131,16 +3082,16 @@ msgid "Hide notes" msgstr "Hïdé nötés Ⱡ#" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "Shöwïng nötés Ⱡ'#" +msgid "Notes visible" +msgstr "Nötés vïsïßlé Ⱡ'#" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "Shöw nötés Ⱡ#" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "Hïdïng nötés Ⱡ#" +msgid "Notes hidden" +msgstr "Nötés hïddén Ⱡ#" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3324,6 +3275,16 @@ msgstr "Wé çöüldn't pöpüläté thé lïst öf längüägé çhöïçés. msgid "Saved" msgstr "Sävéd Ⱡ'σяєм ι#" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "Ìmägé Ûplöäd Érrör Ⱡ'σ#" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" +"Pléäsé vérïfý thät ýöü hävé üplöädéd ä välïd ïmägé (PNG änd JPÉG). Ⱡ'σяєм " +"ιρѕυм ∂σłσя #" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "Àn érrör häs öççürréd. Pléäsé trý ägäïn. Ⱡ'σяєм ιρѕυ#" @@ -3375,19 +3336,6 @@ msgstr "" "Döüßlé-çhéçk thät ýöür wéßçäm ïs çönnéçtéd änd wörkïng tö çöntïnüé. Ⱡ'σяєм " "ιρѕυм ∂σłσя ѕ#" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "Fläsh Nöt Détéçtéd Ⱡ'σ#" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "Ýöü dön't séém tö hävé Fläsh ïnställéd. Ⱡ'σяєм ιρѕ#" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" -"%(a_start)s Gét Fläsh %(a_end)s tö çöntïnüé ýöür énröllmént. Ⱡ'σяєм ιρѕυм #" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "Ýöür üplöäd öf '{file}' süççéédéd. Ⱡ'σяєм ι#" @@ -3396,7 +3344,6 @@ msgstr "Ýöür üplöäd öf '{file}' süççéédéd. Ⱡ'σяєм ι#" msgid "Your upload of '{file}' failed." msgstr "Ýöür üplöäd öf '{file}' fäïléd. Ⱡ'σяєм #" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Ûnäßlé tö rétrïévé dätä, pléäsé trý ägäïn lätér. Ⱡ'σяєм ιρѕυм #" @@ -3436,7 +3383,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Stüdïö's hävïng tröüßlé sävïng ýöür wörk Ⱡ'σяєм ιρѕυ#" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3447,7 +3394,6 @@ msgstr "Stüdïö's hävïng tröüßlé sävïng ýöür wörk Ⱡ'σяєм ι #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Sävïng Ⱡ'σяєм ιρѕ#" @@ -3562,8 +3508,8 @@ msgstr "" msgid "Your import has failed." msgstr "Ýöür ïmpört häs fäïléd. Ⱡ'σяє#" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "Çhöösé néw fïlé Ⱡ'#" @@ -3795,7 +3741,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Gräçé pérïöd müst ßé spéçïfïéd ïn HH:MM förmät. Ⱡ'σяєм ιρѕυм #" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3859,8 +3804,39 @@ msgstr "Ûplöäd Néw Fïlé Ⱡ'#" msgid "Load Another File" msgstr "Löäd Ànöthér Fïlé Ⱡ'σ#" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "Nöt ïn Ûsé Ⱡ#" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "Ûséd ïn %(count)s ünït Ⱡ'σ#" +msgstr[1] "Ûséd ïn %(count)s ünïts Ⱡ'σ#" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" +"Thïs çöntént gröüp ïs nöt ïn üsé. Àdd ä çöntént gröüp tö äný ünït fröm thé " +"%(outlineAnchor)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "Çöürsé Öütlïné Ⱡ'#" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "çöntént gröüp Ⱡ'#" @@ -3901,18 +3877,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "Çöntäïns %(count)s gröüp Ⱡ'σ#" msgstr[1] "Çöntäïns %(count)s gröüps Ⱡ'σя#" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "Nöt ïn Ûsé Ⱡ#" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "Ûséd ïn %(count)s ünït Ⱡ'σ#" -msgstr[1] "Ûséd ïn %(count)s ünïts Ⱡ'σ#" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3923,11 +3887,6 @@ msgstr "" "Thïs Gröüp Çönfïgürätïön ïs nöt ïn üsé. Stärt ßý äddïng ä çöntént éxpérïmént" " tö äný Ûnït vïä thé %(outlineAnchor)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "Çöürsé Öütlïné Ⱡ'#" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -4006,8 +3965,7 @@ msgstr "Däté äddéd Ⱡ#" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "Shöwïng %(current_item_range)s öüt öf %(total_items_count)s, Ⱡ'σяє#" @@ -4119,7 +4077,6 @@ msgstr "Püßlïsh äll ünpüßlïshéd çhängés för thïs %(item)s? Ⱡ'σ #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "Püßlïsh #" @@ -4158,7 +4115,6 @@ msgstr "Düplïçätïng Ⱡ#" msgid "Publishing" msgstr "Püßlïshïng Ⱡ#" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4188,7 +4144,6 @@ msgstr "Éxplïçïtlý Hïdïng fröm Stüdénts Ⱡ'σяєм ι#" msgid "Inheriting Student Visibility" msgstr "Ìnhérïtïng Stüdént Vïsïßïlïtý Ⱡ'σяєм #" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Mäké Vïsïßlé tö Stüdénts Ⱡ'σяє#" @@ -4323,14 +4278,9 @@ msgstr "" msgid "Upload translation" msgstr "Ûplöäd tränslätïön Ⱡ'σ#" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "géttéxt( #" @@ -4442,7 +4392,6 @@ msgstr "" "Stüdénts äré äddéd tö thïs çöhört önlý whén ýöü prövïdé théïr émäïl " "äddréssés ör üsérnämés ön thïs pägé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢ση#" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "Whät döés thïs méän? Ⱡ'σя#" @@ -4627,7 +4576,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "Wé çöüldn't sïgn ýöü ïn. Ⱡ'σяє#" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4689,6 +4637,10 @@ msgstr "Çréäté än äççöünt üsïng Ⱡ'σяє#" msgid "or create a new one here" msgstr "ör çréäté ä néw öné héré Ⱡ'σяє#" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "Çréäté ä néw äççöünt Ⱡ'σя#" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "Çréäté ýöür äççöünt Ⱡ'σя#" @@ -4893,6 +4845,16 @@ msgstr "" "Önçé ïn pösïtïön, üsé thé çämérä ßüttön %(icon)s tö çäptüré ýöür ÌD Ⱡ'σяєм " "ιρѕυм ∂σłσя#" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "Prévïéw öf üplöädéd ïmägé Ⱡ'σяєм#" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" +"Ûplöäd än ïmägé ör çäptüré öné wïth ýöür wéß ör phöné çämérä. Ⱡ'σяєм ιρѕυм " +"∂σłσя#" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -5210,7 +5172,6 @@ msgstr "Dépréçätéd Ⱡ#" msgid "List of uploaded files and assets in this course" msgstr "Lïst öf üplöädéd fïlés änd ässéts ïn thïs çöürsé Ⱡ'σяєм ιρѕυм #" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "- Sörtäßlé Ⱡ#" @@ -5281,6 +5242,20 @@ msgstr "" "çhängés ýöü wïll çhängé thé stüdént éxpérïénçé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт," " ¢σηѕє¢тє#" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "ÌD Ⱡ'#" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "Çännöt délété whén ïn üsé ßý ä ünït Ⱡ'σяєм ιρ#" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "Thïs çöntént gröüp ïs üséd ïn: Ⱡ'σяєм #" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5291,10 +5266,18 @@ msgstr "érrör.méssägé Ⱡ'#" msgid "Content Group Name" msgstr "Çöntént Gröüp Nämé Ⱡ'σ#" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "Çöntént Gröüp ÌD Ⱡ'σ#" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "Thïs ïs thé nämé öf thé gröüp Ⱡ'σяєм #" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "Thïs çöntént gröüp ïs üséd ïn öné ör möré ünïts. Ⱡ'σяєм ιρѕυм #" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5322,12 +5305,10 @@ msgstr "" msgid "Display Name" msgstr "Dïspläý Nämé Ⱡ#" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "Çönfïgüré #" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "Dräg tö réördér Ⱡ'#" @@ -5429,7 +5410,6 @@ msgstr "Düé Däté: #" msgid "Due Time in UTC:" msgstr "Düé Tïmé ïn ÛTÇ: Ⱡ'σ#" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "Çléär Grädïng Düé Däté Ⱡ'σяє#" @@ -5506,10 +5486,6 @@ msgstr "Grädïng #" msgid "Grade as:" msgstr "Grädé äs: #" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "ÌD Ⱡ'#" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5649,7 +5625,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "méssägé #" @@ -5730,7 +5705,6 @@ msgstr "Réléäsé Däté: Ⱡ'#" msgid "Release Time in UTC:" msgstr "Réléäsé Tïmé ïn ÛTÇ: Ⱡ'σя#" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "Çléär Réléäsé Däté/Tïmé Ⱡ'σяє#" @@ -5801,7 +5775,6 @@ msgstr "" "Pléäsé çhéçk thé föllöwïng välïdätïön féédßäçks änd réfléçt thém ïn ýöür " "çöürsé séttïngs: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт#" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "Édït thé nämé Ⱡ'#" @@ -5941,15 +5914,9 @@ msgstr "" "Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυ#" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Ûplöäd Néw Tränsçrïpt Ⱡ'σя#" @@ -5959,11 +5926,8 @@ msgstr "Ûplöäd Néw Tränsçrïpt Ⱡ'σя#" msgid "Upload New .srt Transcript" msgstr "Ûplöäd Néw .srt Tränsçrïpt Ⱡ'σяєм#" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Döwnlöäd Tränsçrïpt för Édïtïng Ⱡ'σяєм ι#" @@ -5983,7 +5947,6 @@ msgstr "" "ýöür öwn .srt tränsçrïpt fïlé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя " "α∂ιριѕι¢ιηg єłιт#" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "Ìmpört ÝöüTüßé Tränsçrïpt Ⱡ'σяєм#" @@ -6015,8 +5978,6 @@ msgstr "" "Dö ýöü wänt tö répläçé thé édX tränsçrïpt wïth thé ÝöüTüßé tränsçrïpt? " "Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -6052,8 +6013,6 @@ msgstr "" "ýöü wänt tö üsé thé çürrént tïméd tränsçrïpt ör üplöäd ä néw .srt tränsçrïpt" " fïlé? Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢#" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "Ûsé Çürrént Tränsçrïpt Ⱡ'σяє#" diff --git a/conf/locale/es_419/LC_MESSAGES/django.mo b/conf/locale/es_419/LC_MESSAGES/django.mo index 81ba195ccf..07ebeaa21a 100644 Binary files a/conf/locale/es_419/LC_MESSAGES/django.mo and b/conf/locale/es_419/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_419/LC_MESSAGES/django.po b/conf/locale/es_419/LC_MESSAGES/django.po index 4964fce520..e8356f47f5 100644 --- a/conf/locale/es_419/LC_MESSAGES/django.po +++ b/conf/locale/es_419/LC_MESSAGES/django.po @@ -149,7 +149,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Cristian Salamea \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" @@ -180,7 +180,7 @@ msgstr "Notas" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "Discusión" @@ -188,7 +188,6 @@ msgstr "Discusión" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Problema" @@ -200,7 +199,6 @@ msgstr "Avanzado" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -227,15 +225,11 @@ msgstr "Completo" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nombre" @@ -336,6 +330,84 @@ msgstr "Incluir en lista blanca a {country} para el curso {course}" msgid "Blacklist {country} for {course}" msgstr "Incluir en lista negra a {country} para el curso {course}" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "El nombre de usuario debe tener por lo menos dos caracteres." + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Se requiere una dirección de correo electrónico válida." + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Se requiere una contraseña válida" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Su nombre legal debe tener por lo menos dos caracteres" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"El nombre de usuario solo debe contener los caracteres A-Z y 0-9, sin " +"espacios." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Debe aceptar los términos y condiciones del servicio." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Se requiere diligenciar el nivel educativo" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Se requiere diligenciar el género" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Se requiere ingresar su año de nacimiento" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Se requiere una dirección de correo electrónico válida." + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Debe escribir una breve descripción de sus objetivos." + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Se requiere diligenciar el campo ciudad." + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Se requiere diligenciar el campo País." + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Para inscribirse, debe aceptar el código de honor." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "No ha llenado uno o más campos requeridos" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Los campos de usuario y contraseña no concuerdan" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Contraseña:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -358,7 +430,7 @@ msgstr "Mujer" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Otro" @@ -415,6 +487,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -544,104 +623,6 @@ msgstr "Ya existe una cuenta con el nombre de usuario '{username}'." msgid "An account with the Email '{email}' already exists." msgstr "Ya existe una cuenta con el correo electrónico '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Error (401 {field}). Escríbanos al correo electrónico." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Para inscribirse, debe aceptar el código de honor." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Debe aceptar los términos y condiciones del servicio." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "El nombre de usuario debe tener por lo menos dos caracteres." - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Se requiere una dirección de correo electrónico válida." - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Su nombre legal debe tener por lo menos dos caracteres" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Se requiere una contraseña válida" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Se requiere aceptar los Términos del Servicio" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Se requiere aceptar el Código de Honor" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Se requiere diligenciar el nivel educativo" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Se requiere diligenciar el género" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Se requiere ingresar su año de nacimiento" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Se requiere una dirección de correo electrónico válida." - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Debe escribir una breve descripción de sus objetivos." - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Se requiere diligenciar el campo ciudad." - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Se requiere diligenciar el campo País." - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "No ha llenado uno o más campos requeridos" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "El nombre de usuario no puede tener más de {num} caracteres" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "El correo electrónico no puede tener más de {num} caracteres" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Se requiere una dirección de correo electrónico válida." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"El nombre de usuario solo debe contener los caracteres A-Z y 0-9, sin " -"espacios." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Contraseña:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Los campos de usuario y contraseña no concuerdan" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "No fue posible enviar el correo de activación." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -717,7 +698,7 @@ msgstr "" msgid "Name required" msgstr "Nombre requerido" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID inválido" @@ -1155,7 +1136,7 @@ msgstr "incorrecto" msgid "incomplete" msgstr "imcompleto" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "sin responder" @@ -1168,7 +1149,7 @@ msgstr "procesando" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: tag inesperado {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Respuesta recibida" @@ -1217,7 +1198,7 @@ msgstr "Error ejecutando el código." msgid "Cannot connect to the queue" msgstr "No puedo conectarme a la cola o \"queue\"" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "No se especificó una fórmula" @@ -1225,7 +1206,7 @@ msgstr "No se especificó una fórmula" msgid "Couldn't parse formula: {error_msg}" msgstr "No pude analizar la fórmula: {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Error al renderizar la vista previa" @@ -1265,13 +1246,11 @@ msgstr "La ejecución de código Javascript no seguro no está permitida." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "Casillas de verificación" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "Opción múltiple" @@ -1304,17 +1283,15 @@ msgstr "Selección Verdadero / Falso" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "Desplegar" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Entrada numérica" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" "Hubo un inconveniente con la respuesta de los funcionarios sobre este " @@ -1364,7 +1341,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "Entrada de texto" @@ -1531,7 +1507,6 @@ msgstr "Datos XML para la anotación" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1563,7 +1538,6 @@ msgstr "Anotacion" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Este nombre aparece en el panel de navegación horizontal al principio de la " @@ -1627,7 +1601,6 @@ msgstr "" "Define cuándo mostrar la respuesta al problema. Un valor predeterminado " "puede establecerse en Configuración avanzada." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Siempre" @@ -1656,7 +1629,6 @@ msgstr "Correcto o fuera de fechas" msgid "Past Due" msgstr "Vencido" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Nunca" @@ -1815,8 +1787,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "El problema está cerrado." @@ -2438,12 +2408,6 @@ msgid "Use your course outline to build your first Section and Subsection." msgstr "" "Use la estructura del curso para construir su primera sección y subsección." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Editar la estructura del curso" @@ -2582,9 +2546,6 @@ msgstr "" "curso, la descripción, y más información. Escriba un borrador del texto que " "los estudiantes leerán antes de decidirse a inscribirse en el curso." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Editar Calendario y detalles del curso" @@ -2875,7 +2836,6 @@ msgstr "Ambos" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Acerca de" @@ -2963,8 +2923,6 @@ msgstr "" msgid "Text" msgstr "Texto" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3646,7 +3604,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Libros de texto" @@ -3942,7 +3900,6 @@ msgstr "" "moocsupport@mathworks.com." #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -4103,7 +4060,6 @@ msgstr "Revisión de instructor" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Revisión por inteligencia artificial." @@ -4158,7 +4114,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Error al obtener respuesta del calificador." @@ -4198,7 +4153,6 @@ msgstr "En progreso" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Terminado" @@ -4559,19 +4513,15 @@ msgstr "Buscar" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Derechos de Autor" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Nombre de usuario" @@ -4683,6 +4633,22 @@ msgstr "El usuario {username} no existe." msgid "User {username} has never accessed problem {location}" msgstr "El usuario {username} no ha ingresado nunca al problema {location}" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4738,7 +4704,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "Dirección de correo electrónico" @@ -4799,7 +4764,7 @@ msgstr "Contraseña fija" msgid "All ok!" msgstr "¡Todo bien!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Debe ingresar un nombre de usuario" @@ -4865,8 +4830,7 @@ msgstr "Número total de usuarios" msgid "Courses loaded in the modulestore" msgstr "Cursos cargados en la bodega de módulos" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html #, fuzzy msgid "username" msgstr "" @@ -4875,7 +4839,7 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "nombre de usuario" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "correo electrónico" @@ -4947,9 +4911,8 @@ msgstr "Se cambió exitosamente la rama: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "Curso cargado {course_name}
Errores:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "Nombre del curso" @@ -4983,7 +4946,7 @@ msgstr "Error - no se puede obtener el curso con ID {0}
{1}
" msgid "Deleted" msgstr "Borrado" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "id_del_curso" @@ -5019,22 +4982,10 @@ msgstr "" "Importa el repositorio git especificado y de forma opcional la rama en el " "modulestore y en el directorio especificado." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Re abrir discusión" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Cerrar discusión" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "El título no puede estar vacío" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "El cuerpo no puede estar vacío" @@ -5043,7 +4994,6 @@ msgstr "El cuerpo no puede estar vacío" msgid "Topic doesn't exist" msgstr "El tema no existe" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Nivel de comentario demasiado profundo" @@ -5154,12 +5104,9 @@ msgstr "ID de usuario" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Correo electrónico" @@ -5296,18 +5243,14 @@ msgstr "Se reinició la fecha de entrega para el estudiante {0} de {1} a {2}" msgid "coupon id is None" msgstr "El id del cupón está vacio" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "el cupón con el id ({coupon_id}) no existe." -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "el cupón con el id ({coupon_id}) ya está inactivo." -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "el cupón con el id ({coupon_id}) fue actualizado exitósamente." @@ -5342,7 +5285,6 @@ msgstr "el cupón con el código ({code}) fue añadido exitósamente." msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "el cupón con el código ({code}) ya existe para este curso." -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "no se encontró el id del cupón" @@ -5457,7 +5399,6 @@ msgstr "Por favor ingrese un nombre de tarea" msgid "Invalid assignment name '{name}'" msgstr "Nombre de tarea inválido: '{name}'" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "email externo" @@ -5529,8 +5470,8 @@ msgstr "ID" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5593,7 +5534,6 @@ msgstr "" "No se ha definido extensión de fecha límite para el estudiante y la unidad " "especificados." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Fecha de entrega extendida" @@ -5652,7 +5592,6 @@ msgstr "generado" msgid "cohorted" msgstr "cohortado" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "No hay información de estado disponible" @@ -5943,7 +5882,6 @@ msgid "View submissions that have been flagged by students as inappropriate." msgstr "" "Ver los envíos que han sido marcados por los estudiantes como inapropiados." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Nuevos envíos para calificar" @@ -6002,7 +5940,7 @@ msgstr "" "Valor de la transacción. Utilice cantidades positivas para pagos y " "cantidades negativas para devoluciones." -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "Código de moneda ISO en minúsculas" @@ -6110,8 +6048,7 @@ msgstr "Donación para {platform_name}" msgid "Page {page_number} of {page_count}" msgstr "Página {page_number} de {page_count}" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "Factura" @@ -6211,7 +6148,6 @@ msgstr "Fecha de la devolución" msgid "Amount of Refund" msgstr "Valor de la devolución" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Cargos de servicio (si aplican)" @@ -6241,13 +6177,11 @@ msgstr "Moneda" msgid "Comments" msgstr "Comentarios" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Universidad" -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html msgid "Course" msgstr "Curso" @@ -6341,7 +6275,7 @@ msgstr "Usted ya estás registrado en el curso {course_id}." msgid "Course added to cart." msgstr "Curso añadido al carrito" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "Descuento no existe para este código '{code}'." @@ -6386,7 +6320,6 @@ msgstr "" "El ente que se encarga de procesar el pago no retornó un parámetro " "requerido: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6570,7 +6503,6 @@ msgstr "" "Fondos insuficientes en la cuenta. Posible solución: intente con otra forma " "de pago" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Razón desconocida" @@ -7028,7 +6960,6 @@ msgstr "Confirmación del pago" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Tomar foto" @@ -7136,7 +7067,6 @@ msgstr "Tiempo completado:" msgid "Refund Request Time:" msgstr "Tiempo transcurrido desde que se solicitó la devolución:" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Tu reseteo de contraseña está completado" @@ -7346,7 +7276,6 @@ msgstr "Borrar artículo" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Borrar" @@ -7405,12 +7334,9 @@ msgstr "Vista previa" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7430,10 +7356,7 @@ msgstr "Vista previa de la Wiki" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "ventana abierta" @@ -7474,7 +7397,7 @@ msgstr "Auto log:" msgid "Change" msgstr "Cambiar" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Fusionar lo seleccionado con el actual..." @@ -7486,11 +7409,11 @@ msgstr "Cambiar a la versión seleccionada" msgid "Wiki Revision Preview" msgstr "Vista previa de revisión de la Wiki" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Volver a la vista del historial" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Cambiar a esta versión" @@ -7514,7 +7437,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "A continuación, es importante hacer una revisión manual." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Crear una nueva versión fusionada." @@ -7759,12 +7682,9 @@ msgstr "No puede crear dos cohortes con el mismo nombre" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "nombredeusuario@dominio.com" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -7776,24 +7696,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Contraseña" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" -"Parece que {email_address} y {username} pertenecer a una cuenta existente. " -"Inténtalo de nuevo con una dirección de correo electrónico y nombre de " -"usuario diferente." - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7880,8 +7789,6 @@ msgstr "Por favor seleccione su país." #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html #, fuzzy msgid "Honor Code" @@ -7903,12 +7810,10 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Términos del Servicio y Código de Honor" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "Estoy de acuerdo en el {platform_name} {terms_of_service}." -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -7919,7 +7824,6 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html #, fuzzy msgid "Terms of Service" msgstr "" @@ -7928,7 +7832,6 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Términos del servicio" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Id de actualización de curso inválida" @@ -8063,7 +7966,6 @@ msgstr "" "Por favor cambia cualquiera de las organizaciones o número de curso para ser" " único." -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -8098,8 +8000,12 @@ msgid "must have at least one group" msgstr "debe tener al menos un grupo" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." -msgstr "Esta configuración de grupo ya está en uso y no puede ser eliminada." +msgid "This group configuration is in use and cannot be deleted." +msgstr "Esta configuración de grupo esta en uso y no puede ser borrada." + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "Este contenido de grupo esta en uso y no puede ser borrado." #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -8326,8 +8232,7 @@ msgstr "No se encontró la página" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -8339,13 +8244,8 @@ msgstr "Cargando" msgid "close" msgstr "cerrar" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -8365,7 +8265,7 @@ msgstr "Descartar" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Configuración" @@ -8374,13 +8274,11 @@ msgstr "Configuración" msgid "Error:" msgstr "Error:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organización:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -8395,10 +8293,8 @@ msgstr "Cursos" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "Correo electrónico" @@ -8408,7 +8304,7 @@ msgstr "Correo electrónico" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "ejemplo: usuario@dominio.com" @@ -8440,14 +8336,13 @@ msgstr "Ejemplo: Juliana Sánchez" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Nombre de usuario público" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "Ejemplo: JulianaSanchez" @@ -8461,7 +8356,7 @@ msgid "Requirements" msgstr "Requerimientos" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Detalles" @@ -8488,13 +8383,11 @@ msgstr "Visite su {link_start}Panel de control{link_end} para ver sus cursos." #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Política de privacidad" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ayuda" @@ -8515,7 +8408,6 @@ msgstr "Lo sentimos, hubo un error al intentar inscribirlo" msgid "Now choose your course track:" msgstr "Ahora selecciones su ruta de estudiante para el curso:" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "Tomar el curso con certificado verificado" @@ -8610,7 +8502,7 @@ msgstr "Nuevo" msgid "Dashboard" msgstr "Panel de control" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "editar" @@ -8654,7 +8546,7 @@ msgstr "Vincular" msgid "Order History" msgstr "Historial de órdenes" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Restablecer Contraseña" @@ -8662,7 +8554,7 @@ msgstr "Restablecer Contraseña" msgid "Current Courses" msgstr "Cursos activos" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "Parece que no se ha registrado aún a ningún curso." @@ -8698,7 +8590,7 @@ msgstr "" "Se ha enviado un mensaje de correo electrónico a {email}. Siga las " "instrucciones de dicho mensaje para cambiar su contraseña." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Cambiar correo electrónico" @@ -8755,15 +8647,6 @@ msgstr "Cambiar mi nombre" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Des inscribirse" @@ -8830,7 +8713,7 @@ msgstr "Estudiantes rechazados" msgid "Debug: " msgstr "Depuración:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Autenticación externa fallida" @@ -8867,7 +8750,7 @@ msgstr "Enviado" msgid "Puzzle Leaderboard" msgstr "Tablero de puntuación para acertijos" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "Acerca de edX" @@ -8920,13 +8803,11 @@ msgstr "Noticias" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contacto" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Preguntas Frecuentes" @@ -8948,31 +8829,31 @@ msgstr "Síguenos" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Meetup" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -8989,7 +8870,6 @@ msgid "Android app on Google Play" msgstr "App de Android en Google Play" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Trabajos" @@ -9007,7 +8887,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "Con la tecnología de Open edX" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Restablecer Contraseña" @@ -9038,7 +8917,7 @@ msgstr "Restablecer mi contraseña" msgid "Email is incorrect." msgstr "La dirección de correo electrónico no es válida" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "Ayuda de {platform_name}" @@ -9110,8 +8989,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -9265,7 +9142,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Información útil" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Iniciar sesión vía OpenID" @@ -9467,7 +9344,7 @@ msgstr "Datos planos:" msgid "Accepted" msgstr "Aceptado" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Error" @@ -9488,17 +9365,15 @@ msgstr "Confirmar" msgid "Reject" msgstr "Rechazar" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Cómo funciona" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Buscar Cursos" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Escuelas & Partners" @@ -9518,13 +9393,11 @@ msgstr "Cerrar sesión" msgid "Shopping Cart" msgstr "Carro de compras" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Registrarse" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "Iniciar sesión" @@ -9544,7 +9417,7 @@ msgstr "Navegación Global" msgid "Schools" msgstr "Instituciones" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Regístrese Ahora" @@ -9615,7 +9488,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Ocurrieron los siguientes errores al procesar su registro:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9628,7 +9500,6 @@ msgid "Enter a public username:" msgstr "Ingrese un nombre de usuario público:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "Se mostrará en cualquier discusión o foro en los que usted participe" @@ -9771,11 +9642,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Por favor complete los siguientes campos para crear su cuenta." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Se requiere para cualquier certificado que pueda obtener" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "No podrá ser cambiada después" @@ -9831,12 +9702,12 @@ msgstr "" "{platform_name}. Haga click {dashboard_link_start}aquí{link_end} para volver" " al panel de control. " -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Previo" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Siguiente" @@ -9845,15 +9716,15 @@ msgstr "Siguiente" msgid "Sign Up for {platform_name}" msgstr "Regístrese en {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "Ej: nombre@dominio.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "Ej: nombre (Así se mostrará en los Foros)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "Ej: Nombre (Así aparecerá en los certificados)" @@ -9956,7 +9827,7 @@ msgstr "Borrar estado de estudiante" msgid "Rescore Student Submission" msgstr "Re puntuar el envío del estudiante" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Campos de módulo" @@ -10012,7 +9883,6 @@ msgstr "Inscripciones y registro de personal de apoyo" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Registros de Git" @@ -10092,6 +9962,18 @@ msgstr "Eliminar curso del sitio" msgid "Platform Version" msgstr "Versión de la Plataforma" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "previo" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "Página {current_page} de {total_pages}" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "siguiente" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -10106,6 +9988,11 @@ msgstr "Fecha" msgid "Git Action" msgstr "Acción de Git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -10260,7 +10147,7 @@ msgstr "Volver al inicio de la transcripción" msgid "Download video" msgstr "Descargar video" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Descargar la transcripción" @@ -10276,7 +10163,6 @@ msgstr "Tus palabras:" msgid "Total number of words:" msgstr "Número total de palabras:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Abrir Calculadora" @@ -10636,8 +10522,6 @@ msgstr "{chapter}, capítulo actual" msgid "due {date}" msgstr "fecha límite: {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10699,12 +10583,10 @@ msgstr "Visión general" msgid "Share with friends and family!" msgstr "Compartir con amigos y familiares!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "Publica que te has registrado en este curso" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "Envía un correo a tus amigos que te has registrado en este curso" @@ -10762,6 +10644,17 @@ msgstr "" msgid "Additional Resources" msgstr "Recursos Adicionales" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Inscribirse" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "Inscribirse" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "Ver este curso como:" @@ -10844,8 +10737,8 @@ msgid "No content has been added to this course" msgstr "Todavía no se ha añadido contenido en este curso" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" -msgstr "Navegación de herramientas del curso" +msgid "Course Utilities" +msgstr "Utilidades de curso" #: lms/templates/courseware/error-message.html msgid "" @@ -10886,11 +10779,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Ver actualizaciones en Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Novedades y noticias del curso" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Navegación de apuntes" @@ -10898,7 +10791,6 @@ msgstr "Navegación de apuntes" msgid "Course Handouts" msgstr "Apuntes del curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "Panel de instrucción Antiguo" @@ -10956,7 +10848,6 @@ msgstr "Administrar Grupos" msgid "Grade Downloads" msgstr "Descarga de calificaciones" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10998,7 +10889,6 @@ msgstr "" "¡Las tareas definidas para este curso deben corresponder con las almacenadas" " en el libro de calificaciones para que esto funcione correctamente!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Nombre del libro de calificaciones:" @@ -11012,7 +10902,6 @@ msgstr "Nombre de la tarea:" msgid "Course-specific grade adjustment" msgstr "Ajustes de calificaciones específicos al curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -11053,7 +10942,6 @@ msgstr "Datos de inscripciones" msgid "Pull enrollment from remote gradebook" msgstr "Importe inscripciones del libro de calificaciones remoto" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Sección:" @@ -11106,7 +10994,6 @@ msgstr "Día" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Estudiantes" @@ -11201,7 +11088,6 @@ msgstr "Duración (segundos)" msgid "Task Progress" msgstr "Progreso de la Tarea" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "desconocido" @@ -11290,8 +11176,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Progreso del curso para el estudiante '{username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "Descargue su certificado" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -11372,33 +11268,13 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "Su {cert_name_short} está siendo generado" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Este enlace abrirá/descargará un documento PDF" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download {cert_name_short} (PDF)" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Dado que no contamos con un conjunto válido de fotos de verificación suya en" -" el momento de generación de su {cert_name_long}, no hemos podido otorgarle " -"un {cert_name_short} verificado. En su lugar, se le ha generado un " -"{cert_name_short} de código de honor." +msgstr "Descargar {cert_name_short} (PDF)" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" @@ -11420,11 +11296,29 @@ msgstr "Descargue su {cert_name_short} con identidad verificada (PDF)" msgid "Complete our course feedback survey" msgstr "Complete nuestra encuesta de retroalimentación sobre el curso" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "Agregar certificado al Perfil de LinkedIn" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "Compartir en LinkedIn" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Dado que no contamos con un conjunto válido de fotos de verificación suya en" +" el momento de generación de su {cert_name_long}, no hemos podido otorgarle " +"un {cert_name_short} verificado. En su lugar, se le ha generado un " +"{cert_name_short} de código de honor." + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Imagen de portada" @@ -11433,11 +11327,6 @@ msgstr "{course_number} {course_name} Imagen de portada" msgid "Your verification is pending" msgstr "Su verificacion esta pendiente" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Inscrito como;" @@ -11458,7 +11347,6 @@ msgstr "Verificado: Verificación pendiente" msgid "You're enrolled as a verified student" msgstr "Usted está inscrito como un estudiante verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "ID verificador Ribbon / insignia" @@ -11468,7 +11356,6 @@ msgstr "ID verificador Ribbon / insignia" msgid "Verified" msgstr "Verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Usted está inscrito como estudiante de código de honor" @@ -11527,7 +11414,6 @@ msgstr "Usted todavia necesita verificarse para este curso" msgid "Verify Now" msgstr "Verificar ahora" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "Usted ha verificado su ID!" @@ -11589,33 +11475,24 @@ msgstr "" "{contact_link_end} para solicitar el pago, o puede " "{unenroll_link_start}abular la matrícula {unenroll_link_end} de este curso" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Ver Curso Archivado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Ver curso" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" "¿Está seguro de que desea cancelar su inscripción del curso adquirido?" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "¿Está seguro de que desea cancelar su inscripción de " -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " @@ -11624,12 +11501,10 @@ msgstr "" "¿Está seguro de que desea eliminarse de la modalidad verificada de " "{cert_name_long}" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Configuración de email" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11648,7 +11523,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: Re-verificar antes de {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Acciones de notificación" @@ -11695,7 +11569,6 @@ msgstr "Rechazada:" msgid "Approved:" msgstr "Aprobada:" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "Estado de la verificación de identidad" @@ -11901,9 +11774,7 @@ msgstr "Editando entrada" msgid "Edit post title" msgstr "Editar el título de la publicación" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Título" @@ -11915,7 +11786,6 @@ msgstr "Actualizar entrada" msgid "Show Comments (%(num_comments)s)" msgstr "Mostrar comentarios (%(num_comments)s)" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Añadir un comentario" @@ -11936,7 +11806,6 @@ msgstr "Validado hace %(time_ago)s por %(user)s" msgid "endorsed %(time_ago)s" msgstr "Validado hace %(time_ago)s" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "Reportado" @@ -12108,7 +11977,6 @@ msgstr "Añadir entrada" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "Tipo de entrada:" @@ -12129,7 +11997,6 @@ msgstr "" msgid "Topic Area:" msgstr "Área Temática" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "Filtrar temas" @@ -12245,7 +12112,6 @@ msgstr "" msgid "User Profile" msgstr "Perfil de Usuario" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -13122,8 +12988,6 @@ msgstr "Marcar como contenido inapropiado para una revisión posterior" msgid "Skip" msgstr "Omitir" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -13185,12 +13049,10 @@ msgstr "Nombre para mostrar del curso:" msgid "Has the course started?" msgstr "¿Ha comenzado ya el curso?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Si" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "No" @@ -13370,7 +13232,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "Crear Códigos de inscripción" @@ -13528,7 +13389,6 @@ msgstr "Ingrese un valor no numérico para el nombre de contacto en la empresa" msgid "Please enter the company contact email" msgstr "Ingrese el correo electrónico del contacto en la empresa" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "Por favor ingrese una dirección de correo válida" @@ -13593,7 +13453,6 @@ msgstr "Por favor ingrese el valor numérico del descuento" msgid "Edit Coupon" msgstr "Editar cupón" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "Actualizar cupón" @@ -13627,9 +13486,6 @@ msgstr "" " tenga una fecha límite anterior para cierto estudiante." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -13638,15 +13494,10 @@ msgstr "" "estudiante aquí:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Correo electrónico o nombre de usuario del estudiante" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Seleccione la unidad calificada:" @@ -13724,7 +13575,6 @@ msgstr "Generar código de Modal de Registro" msgid "* Required Information" msgstr "* Información Requerida" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "Nombre de la organización" @@ -13842,7 +13692,6 @@ msgstr "Cargando la lista de problemas..." msgid "Gender Distribution" msgstr "Distribución de género" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Panel de control del instructor" @@ -13855,7 +13704,6 @@ msgstr "Volver al panel de instructor antiguo" msgid "Batch Enrollment" msgstr "Inscripciones en lote" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -13871,12 +13719,10 @@ msgstr "" "No recibirá notificaciones de los correos con rebotes, por lo tanto, debe " "asegurarse de que los correos estén bien escritos." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Casilla de Correo electrónico/Nombres de usuario" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Auto inscribirse" @@ -13905,12 +13751,10 @@ msgstr "" "Marcar esta opción no tiene ningún efecto si se ha seleccionado la opción de" " 'Desinscribir'." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Notificar a los usuarios por correo electrónico" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -13919,10 +13763,6 @@ msgstr "" "Si esta opción está marcada, los usuarios recibirán una " "notificación por correo electrónico." -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Inscribirse" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "Registrar/Inscribir estudiantes" @@ -14148,7 +13988,6 @@ msgstr "" "Puede hacer clic en cualquiera de las barras para listar los estudiantes que" " abrieron la subsección." -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "También puede descargar los datos con archivo CSV." @@ -14186,14 +14025,12 @@ msgstr "Descargar la información de estudiantes como archivo CSV" msgid "Download Student Grades as a CSV" msgstr "Descargar las calificaciones de estudiantes como archivo CSV" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" "Esta es una lista parcial. para ver la lista completa, descargue el archivo " "como CSV," -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Enviar correo electrónico" @@ -14206,12 +14043,10 @@ msgstr "Enviar a:" msgid "Myself" msgstr "Mi mismo" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "El personal del curso y los instructores" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Todos (Estudiantes, personal del curso e instructores)" @@ -14307,7 +14142,6 @@ msgstr "" msgid "Show Email Task History" msgstr "Mostrar el historial de tareas de correo electrónico" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "Definir el precio para la modalidad del curso" @@ -14351,19 +14185,16 @@ msgstr "Página de progreso del estudiante" msgid "Student-specific grade adjustment" msgstr "Ajustes de calificaciones específicos al estudiante" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "Especifique aquí un problema, con su localizacion completa:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Localización del problema" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -14759,7 +14590,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "Detalles de facturación" @@ -14783,7 +14613,6 @@ msgstr "Organización que efectúa la compra" msgid "Purchase order number (if any)" msgstr "Número de orden de compra (si aplica)" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "email@example.com" @@ -14984,15 +14813,10 @@ msgid " {course_name} " msgstr " {course_name} " #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "Precio por estudiante:" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -15115,7 +14939,6 @@ msgstr "" "Ya se ha registrado para este curso. Visite su {link_start}Panel de " "Control{link_end} para ver el curso." -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -15143,7 +14966,6 @@ msgstr "el código ha sido aplicado" msgid "TOTAL:" msgstr "TOTAL:" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " @@ -15152,12 +14974,10 @@ msgstr "" "Después de que la compra esté completada, se genera un recibo con la " "información de facturación y los códigos de registro para los estudiantes." -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "Después de completada la compra," -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "estará inscrito en este curso." @@ -15218,12 +15038,10 @@ msgstr "" "edx.org, pero está aquí para ser utilizada posiblemente en las instalaciones" " de Open edX." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "Blog" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "Donar" @@ -15241,14 +15059,11 @@ msgstr "" "{platform_name} debe cumplir con los controles de exportaciones y no puede " "permitirle acceder a este curso en particular." -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Kit Multimedia" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "En la prensa" @@ -15562,7 +15377,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -15572,19 +15386,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Tomar nuevamente" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "Luce bien!" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Consejos para tomar una foto exitosamente" @@ -15607,7 +15418,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Una vez esté en posición, use el botón de la cámara" @@ -15618,19 +15428,16 @@ msgstr "para capturar su imagen." #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Use el botón de verificación" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "una vez esté satisfecho con la fotografía" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Preguntas comunes" @@ -15650,7 +15457,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "¿Que harán con esta fotografía?" @@ -15737,7 +15543,6 @@ msgstr "Complete sus otras re verificaciones" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Volver a retomar en el punto en que quedó" @@ -15754,15 +15559,10 @@ msgid "You currently need to re-verify for the following courses:" msgstr "" "Actualmente debe re verificar su identidad para los siguientes cursos:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "Re verificar antes de {date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "Vuelva a verificar para {course_number}" @@ -15847,13 +15647,15 @@ msgstr "" #: lms/templates/verify_student/missed_verification_deadline.html msgid "Verification Deadline Has Passed" -msgstr "" +msgstr "La fecha límite de verificación ya pasó" #: lms/templates/verify_student/missed_verification_deadline.html msgid "" "The verification deadline for {course_name} was {date}. Verification is no " "longer available." msgstr "" +"La fecha límite de verificación para el curso {course_name} era {date}. Este" +" procedimiento ya no está disponible." #: lms/templates/verify_student/pay_and_verify.html msgid "Upgrade Your Enrollment For {course_name}." @@ -16027,7 +15829,6 @@ msgstr "" "Por favor revise las fotos y verifique que cumplen con los requisitos " "listados a continuación." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "Las fotos deben cumplir con los siguientes requerimientos;" @@ -16040,7 +15841,6 @@ msgstr "Estar bien iluminadas" msgid "Show your whole face" msgstr "Mostrar su cara completa" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "La foto de su documento debe coincidir con la foto de su cara." @@ -16107,7 +15907,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Volver al panel principal" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "El proceso de re-verificación falló" @@ -16126,9 +15925,6 @@ msgstr "" "Por favor contacte al equipo de soporte, si considera que este mensaje se ha" " producido por error." -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(activo){span_end}" @@ -16244,8 +16040,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "Contacte el soporte de {platform_name}" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Archivos y Cargas" @@ -16265,8 +16060,7 @@ msgstr "Contenido" msgid "Page Actions" msgstr "Acciones de página" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Subir nuevo archivo" @@ -16352,7 +16146,7 @@ msgstr "Su archivo ha sido borrado." msgid "close alert" msgstr "Cerrar alerta" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Listas de comprobación del curso" @@ -16392,7 +16186,6 @@ msgid "{studio_name} checklists" msgstr "{studio_name} Listas de verificación" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Duplicar" @@ -16405,7 +16198,7 @@ msgid "Delete this component" msgstr "Borrar este componente" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "Arrastre para reorganizar" @@ -16545,7 +16338,7 @@ msgstr "" " el original)" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Organización" @@ -16555,7 +16348,6 @@ msgstr "Organización" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "Ej: UniversidadX o OrganizaciónX" @@ -16567,8 +16359,6 @@ msgstr "" "El nombre de la organización que patrocina el nuevo curso. (Este nombre es a" " menudo el mismo del orginal.)" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "Nota: No se permite caractéres especiales o espacios" @@ -16654,7 +16444,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "Aprende más sobre Reapertura de cursos." -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Actualizaciones del curso" @@ -16674,7 +16464,6 @@ msgstr "" "los estudiantes de forma general. En esta sección puede añadir o editar sus " "actualizaciones en lenguaje HTML." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Estructura del curso" @@ -16737,7 +16526,7 @@ msgstr "Ver en vivo" msgid "Course Start Date:" msgstr "Fecha de inicio del curso:" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "Editar la fecha de inicio" @@ -16810,8 +16599,8 @@ msgstr "Aprenda más sobre la estructura del curso" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Páginas" @@ -16833,11 +16622,11 @@ msgstr "" msgid "Show this page" msgstr "Mostrar esta página" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Mostrar/esconder página" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "Esta página no puede ser reordenada" @@ -16915,7 +16704,6 @@ msgstr "" "los libros de texto y las páginas personalizadas." #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "cerrar" @@ -16968,7 +16756,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Volver al panel de control" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Exportación del Curso" @@ -17118,8 +16906,7 @@ msgstr "Aprenda más sobre el proceso de exportar cursos." msgid "Export Course to Git" msgstr "Exportar Curso a Git:" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Exportar a Git" @@ -17168,13 +16955,11 @@ msgstr "Su curso:" msgid "Course git url:" msgstr "Url Git del curso:" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "Grupos de Contenido" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "Configuraciones de Grupos de experimento" @@ -17204,14 +16989,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" -"Haga clic en {em_start}Nuevo Grupo de Contenido{em_end} para añadir un nuevo" -" grupo de contenido. Para editar el nombre de un grupo de contenido, coloque" -" el curso sobre el cuadro y haga clic en {em_start} Editar {em_end}. Grupos " -"de contenido no pueden ser borrados" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "Aprender más" @@ -17270,8 +17056,8 @@ msgid "Course Team" msgstr "Equipo del curso" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Configuración avanzada" @@ -17295,7 +17081,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "Diferentes características de {studio_name}" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "{studio_name} le ayuda a mantener organizados sus cursos" @@ -17350,7 +17136,6 @@ msgstr "" "Construya y libere las secciones para sus estudiantes de " "forma incremental. No tiene que tener todo terminado de una sola vez." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "Aprender es mas que solo clases" @@ -17401,7 +17186,7 @@ msgstr "" "Es más que selección multiple. Studio tiene casi una docena de tipos de " "problemas para retar a sus estudiantes." -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -17523,7 +17308,7 @@ msgstr "" "Los estudiantes no podrán acceder este componente. Modifique nuevamente el " "componente para corregir el error." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Importación de curso" @@ -17683,8 +17468,7 @@ msgstr "" "estudiantes asociados con dichos problemas pueden perderse. Estos datos " "incluyen los puntajes de los estudiantes sobre los problemas. " -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "Página de inicio de {studio_name}" @@ -17700,7 +17484,7 @@ msgstr "Nueva librería" msgid "Email staff to create course" msgstr "Escribanos un correo electrónico para la creación del curso" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "Por favor corrija los campos resaltados a continuación." @@ -17746,7 +17530,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "El código único que identifica a su curso dentro de la organización." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -17758,7 +17542,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "El periodo en el que su curso se dictará." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Crear" @@ -17789,7 +17573,7 @@ msgstr "El nombre público para mostrar de su librería." msgid "The public organization name for your library." msgstr "El nombre de la organización para mostrar de su librería." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "No podrá ser cambiada después." @@ -17821,7 +17605,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "Cursos que están siendo procesados" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "Impartición del Curso:" @@ -17875,7 +17659,7 @@ msgstr "" "por el creador del curso. Por favor, contacte al creador o administrador " "del curso específico que está ayudando a crear." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "Crear su primer curso" @@ -17902,7 +17686,7 @@ msgstr "" "evaluará su solicitud y le hará llegar sus comentarios en un plazo de 24 " "horas durante la semana de trabajo." -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "Estado de su solicitud de creador del curso:" @@ -17910,7 +17694,7 @@ msgstr "Estado de su solicitud de creador del curso:" msgid "Request the Ability to Create Courses" msgstr "Solicite el permiso para crear cursos" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "Estado de su solicitud de creador del curso" @@ -17927,7 +17711,7 @@ msgstr "" "creación de curso son otorgados por {platform_name}. Nuestro equipo esta " "completando la evaluación de su solicitud." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "Su solicitud de creador del curso es:" @@ -17992,7 +17776,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "Empezando a utilizar {studio_name}" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" "Utilice nuestra herramienta de retroalimentación para solicitar ayuda." @@ -18001,7 +17785,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "Pedir ayuda con {studio_name}" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "¿Puedo crear cursos en {studio_name}?" @@ -18075,7 +17859,7 @@ msgstr "Librerías de contenido" msgid "Add Component" msgstr "Añadir" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "ID de la librería" @@ -18144,7 +17928,7 @@ msgstr "Aprender más acerca de los contenidos de las bibliotecas" msgid "Sign In" msgstr "Iniciar sesión" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "Iniciar sesión {studio_name}" @@ -18203,13 +17987,11 @@ msgstr "" msgid "Add User" msgstr "Agregar usuario" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "Rol actual:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "¡Usted!" @@ -18499,7 +18281,6 @@ msgstr "Información básica" msgid "The nuts and bolts of your course" msgstr "Las herramientas para la construcción de su curso" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "Este campo está deshabilitado; no puede modificar su valor." @@ -18564,8 +18345,7 @@ msgstr "Primer día del curso" msgid "Course Start Time" msgstr "Hora de inicio del curso" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "(UTC)" @@ -18652,7 +18432,6 @@ msgstr "" "Introducción, prerrequisitos, preguntas frecuentes que se usan en los %s (en" " formato HTML)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Imagen del curso" @@ -18922,7 +18701,6 @@ msgstr "" " exámenes y especificar el peso que tendrá cada actividad en la calificación" " final del estudiante." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "Expandir o Colapsar" @@ -18981,8 +18759,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "Aprenda más sobre los libros de texto" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "Cargar vídeos" @@ -19211,7 +18988,7 @@ msgstr "Contáctenos" msgid "Current Course:" msgstr "Curso activo:" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "Navegando por {course_name}" @@ -19251,7 +19028,7 @@ msgstr "Librería" msgid "Help & Account Navigation" msgstr "Ayuda y Navegación de la cuenta" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "Ayuda contextual en línea" @@ -19271,12 +19048,10 @@ msgstr "usted no ha iniciado sesión" msgid "Launch Latex Source Compiler" msgstr "Lanzar el compilador de código Latex" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "Encabezado 1" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "Explicación" @@ -19301,7 +19076,7 @@ msgstr "¿Buscando ayuda con {studio_name}?" msgid "Hide {studio_name} Help" msgstr "Ocultar la ayuda de {studio_name}" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "Documentación de {studio_name} " @@ -19322,7 +19097,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "PDF: Construcción y operación de un curso {platform_name}" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "{studio_name} Autor del Soporte" @@ -19374,11 +19149,11 @@ msgstr "" "puede usar funciones más complejas como la adición de plugins, metadatos, " "artículos relacionados, etc." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Contenidos" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Resumen" @@ -19767,11 +19542,11 @@ msgstr "revisiones del adjunto" msgid "%s was successfully added." msgstr "%s ha sido cargado exitósamente." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Su archivo no ha podido ser guardado: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.mo b/conf/locale/es_419/LC_MESSAGES/djangojs.mo index 0f93f52766..710c513946 100644 Binary files a/conf/locale/es_419/LC_MESSAGES/djangojs.mo and b/conf/locale/es_419/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.po b/conf/locale/es_419/LC_MESSAGES/djangojs.po index 4db8062c9b..b32aec3fa8 100644 --- a/conf/locale/es_419/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_419/LC_MESSAGES/djangojs.po @@ -6,7 +6,7 @@ # Translators: # Antonio Pardo , 2013 # Antonio Pardo , 2013 -# Cristian Salamea , 2013-2014 +# Cristian Salamea , 2013-2015 # morsoinferno , 2014-2015 # David Salazar , 2014 # David Salazar , 2014 @@ -81,8 +81,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-09 03:29+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-21 07:39+0000\n" "Last-Translator: Cristian Salamea \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -135,8 +134,6 @@ msgstr "Este vínculo se abrirá en una nueva ventana o pestaña del navegador" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Desconocido" @@ -144,17 +141,14 @@ msgstr "Desconocido" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Borrar" @@ -247,7 +241,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s punto posible)" msgstr[1] "(%(num_points)s puntos posibles)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Respuesta:" @@ -255,7 +248,6 @@ msgstr "Respuesta:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Ocultar Respuesta" @@ -276,7 +268,6 @@ msgstr "Respuesta oculta" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "sin responder" @@ -295,7 +286,6 @@ msgstr "Debe elegir una puntuación sobre su calificación antes de enviar." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" "Su puntaje no alcanzó a cumplir el criterio para avanzar al siguiente paso." @@ -372,11 +362,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Mostrar pregunta" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Ocultar pregunta" @@ -384,7 +372,6 @@ msgstr "Ocultar pregunta" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Párrafo" @@ -395,21 +382,18 @@ msgstr "Preformateado" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Encabezado 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Encabezado 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Encabezado 3" @@ -1282,7 +1266,6 @@ msgstr "Remover el vínculo" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Reemplazar todo" @@ -1296,7 +1279,6 @@ msgstr "Reemplazar con" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1651,18 +1633,14 @@ msgstr "" "\n" "Haga Clic en CANCELAR para volver a está página sin que se que envíe su información." -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "incorrecto" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "Correcto" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "pregunta" @@ -1785,7 +1763,6 @@ msgstr "HD encendido" msgid "HD off" msgstr "HD apagado" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Posición del video" @@ -1832,7 +1809,6 @@ msgstr "Actualizando con el más reciente contenido de la librería" msgid "Creating missing groups" msgstr "Agregar los grupos faltantes" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Ocultar Discusión" @@ -1842,13 +1818,9 @@ msgid "Show Discussion" msgstr "Mostrar Discusión" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1884,8 +1856,6 @@ msgstr "" "Ocurrió un problema al procesar su solicitud. Por favor intente nuevamente." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -1999,6 +1969,7 @@ msgstr "conversación actual" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: lms/static/js/edxnotes/views/tabs/search_results.js +#: lms/templates/courseware_search/search_list.underscore msgid "Search Results" msgstr "Resultados de búsqueda" @@ -2212,12 +2183,10 @@ msgid "All flags have been removed. To undo, uncheck the box." msgstr "" "Todas las marcas han sido eliminadas. Para deshacer, desmarque la casilla." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Ya había reportado esta publicación." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Reportar una publicación como ofensiva o inapropiada." @@ -2258,7 +2227,6 @@ msgstr "Fecha de publicación" msgid "More" msgstr "Más" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Mis Anotaciones" @@ -2267,32 +2235,26 @@ msgstr "Mis Anotaciones" msgid "Instructor" msgstr "Instructor" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Público" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Buscar" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Usuarios" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Etiquetas" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Anotación" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2398,7 +2360,6 @@ msgstr "Nombre de usuario" msgid "Email" msgstr "Correo electrónico" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Quitar el acceso" @@ -2412,7 +2373,6 @@ msgid "Please enter a username or email." msgstr "" "Por favor ingrese su nombre de usuario o dirección de correo electrónico." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Error al cambiar los permisos del usuario." @@ -2634,7 +2594,6 @@ msgstr "" msgid "Error sending email." msgstr "Error enviando el correo electrónico." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "No hay historial de correos electrónicos para este curso." @@ -2651,10 +2610,6 @@ msgstr "" "Ocurrió un error obteniendo el historial de correos electrónicos para este " "curso." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2669,12 +2624,6 @@ msgstr "" "Error al obtener la url de progreso del estudiante '<%= student_id %>'. " "Asegúrese de que el identificador del estudiante esté escrito correctamente." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Por favor ingrese la ubicación de un problema" @@ -2967,7 +2916,6 @@ msgstr "El sistema llegó a un estado inválido: <%= state %>" msgid "System got into invalid state for submission: " msgstr "El sistema llegó a un estado inválido para envío:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Ocultar)" @@ -3061,7 +3009,7 @@ msgstr "ingrese la descripción de la imagen aquí" msgid "enter link description here" msgstr "Ingrese la descripción del vínculo aquí" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "ingrese el código aquí" @@ -3134,6 +3082,10 @@ msgstr "" "vínculo que aparecerá en el correo electrónico para confirmar el cambio de " "su dirección de correo." +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3158,16 +3110,16 @@ msgid "Hide notes" msgstr "Ocultar notas" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "Mostrando Notas" +msgid "Notes visible" +msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "Mostrar notas" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "Ocultando notas" +msgid "Notes hidden" +msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3350,6 +3302,14 @@ msgstr "No hemos podido cargar la lista de idiomas." msgid "Saved" msgstr "Guardado" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "Ocurrió un error. Por favor intente nuevamente." @@ -3399,18 +3359,6 @@ msgid "Double-check that your webcam is connected and working to continue." msgstr "" "Verifique que su cámara web esté conectada y funcionando para continuar." -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "No se detectó Flash" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "Parece que no tiene instalado Flash." - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "%(a_start)s Obtenga Flash %(a_end)s para continuar su registro." - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "Se ha cargado el archivo '{file}' exitosamente." @@ -3419,7 +3367,6 @@ msgstr "Se ha cargado el archivo '{file}' exitosamente." msgid "Your upload of '{file}' failed." msgstr "No se ha podido cargar el archivo '{file}'." -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3460,7 +3407,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio tiene problemas para guardar su trabajo" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3471,7 +3418,6 @@ msgstr "Studio tiene problemas para guardar su trabajo" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Guardando" @@ -3580,8 +3526,8 @@ msgstr "Ha habido un error importando el nuevo curso a nuestra base de datos." msgid "Your import has failed." msgstr "Su importación ha fallado." -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "Escoja un nuevo archivo" @@ -3808,7 +3754,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "El periodo de gracia debe especificarse en el formato HH:MM" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3872,8 +3817,37 @@ msgstr "Subir nuevo archivo" msgid "Load Another File" msgstr "Cargar otro archivo" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "No esta en uso" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "Usado en %(count)s unidad" +msgstr[1] "Usado en %(count)s unidades" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "Estructura del curso" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "Contenido" @@ -3914,18 +3888,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "Contiene %(count)s grupo" msgstr[1] "Contiene %(count)s grupos" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "No esta en uso" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "Usado en %(count)s unidad" -msgstr[1] "Usado en %(count)s unidades" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3936,11 +3898,6 @@ msgstr "" "Esta configuración de grupo no está en uso. Comience añadiendo contenido " "experimental a cualquier unidad a través de la %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "Estructura del curso" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -4017,8 +3974,7 @@ msgstr "Fecha de adición" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "Mostrando %(current_item_range)s de %(total_items_count)s, " @@ -4126,7 +4082,6 @@ msgstr "Publicar todos los cambios no publicados para este %(item)s?" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "Publicar" @@ -4165,7 +4120,6 @@ msgstr "Duplicar" msgid "Publishing" msgstr "Publicar" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4195,7 +4149,6 @@ msgstr "Ocultar solo a los estudiantes" msgid "Inheriting Student Visibility" msgstr "Heredando la Visibilidad a estudiantes." -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Hacer visible a los estudiantes" @@ -4327,14 +4280,9 @@ msgstr "" msgid "Upload translation" msgstr "Subir traducción" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "gettext(" @@ -4446,7 +4394,6 @@ msgstr "" "Los estudiantes son agregados a esta categoria o cohorte solamente si se " "provee la dirección de correos o el nombre de usuario en esta página." -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "¿Qué significa esto?" @@ -4631,7 +4578,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "No se ha podido iniciar su sesión." -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4693,6 +4639,10 @@ msgstr "Crear una cuenta usando" msgid "or create a new one here" msgstr "o crear una nueva aquí" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "Crear una nueva cuenta" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "Crear su cuenta" @@ -4891,6 +4841,14 @@ msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" "Una vez en posición, usa el botón de la cámara %(icon)s para capturar tu ID" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "Vista previa de imagen subida" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "Subir una imagen o captura con tu camara web o del teléfono" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "Gracias por volver a verificar su identificación en: %(courseName)s" @@ -5201,7 +5159,6 @@ msgstr "Descartado" msgid "List of uploaded files and assets in this course" msgstr "Lista de archivos y recursos cargados en este curso" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "- Ordenable" @@ -5271,6 +5228,20 @@ msgstr "" "Atención: La última versión publicada de esta unidad está en vivo. Al " "publicar los cambios, cambiará la experiencia de los estudiantes." +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "ID" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "No puede borrar cuando esta en uso por una unidad" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "Este contenido de grupo es usado en:" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5281,10 +5252,18 @@ msgstr "Mensaje de error" msgid "Content Group Name" msgstr "Content Group Name" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "ID de Contenido de Grupo" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "Este es el nombre del grupo" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "Este contenido de grupo es usado en uno o mas unidades." + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5310,12 +5289,10 @@ msgstr "Cambios no publicados del contenido que será liberado en el futuro" msgid "Display Name" msgstr "Nombre para mostrar:" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "Configurar" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "Arrastre para reorganizar" @@ -5416,7 +5393,6 @@ msgstr "Fecha límite:" msgid "Due Time in UTC:" msgstr "Hora límite en UTC:" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "Borrar la fecha límite de calificación" @@ -5489,10 +5465,6 @@ msgstr "Calificaciones" msgid "Grade as:" msgstr "Calificar como:" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "ID" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5630,7 +5602,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "mensaje" @@ -5710,7 +5681,6 @@ msgstr "Fecha de liberación:" msgid "Release Time in UTC:" msgstr "Hora de liberación en UTC:" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "Borrar la fecha y hora de liberación" @@ -5780,7 +5750,6 @@ msgstr "" "Por favor revisa la retroalimentación de validación y reflejalo en tu " "configuración de curso." -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "Editar el nombre" @@ -5914,15 +5883,9 @@ msgstr "" "reemplazarla, puede hacerlo cargando un nuevo archivo .srt" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Cargar nueva transcripción" @@ -5932,11 +5895,8 @@ msgstr "Cargar nueva transcripción" msgid "Upload New .srt Transcript" msgstr "Cargar nuevo archivo de transcripción .srt" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Descargar Transcripción para editar" @@ -5955,7 +5915,6 @@ msgstr "" "encontrado una en YouTube. Puede importar la trasncripción desde YouTube o " "subir su propio archivo de transcripción .srt." -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "Importar la transcripción desde YouTube" @@ -5984,8 +5943,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "¿Desea reemplazar la transcripción de edX con la de YouTube?" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "Si, reemplazar la transcripción de edX con la de YouTube" @@ -6018,8 +5975,6 @@ msgstr "" "transcripción. ¿Desea usar el archivo de transcripción actual o subir un " "nuevo archivo .srt?" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "Usar la transcripción actual" diff --git a/conf/locale/es_AR/LC_MESSAGES/django.mo b/conf/locale/es_AR/LC_MESSAGES/django.mo index 5dc39c7740..8e3446c5f7 100644 Binary files a/conf/locale/es_AR/LC_MESSAGES/django.mo and b/conf/locale/es_AR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_AR/LC_MESSAGES/django.po b/conf/locale/es_AR/LC_MESSAGES/django.po index 7ad13422e6..9205efa545 100644 --- a/conf/locale/es_AR/LC_MESSAGES/django.po +++ b/conf/locale/es_AR/LC_MESSAGES/django.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Aylén \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" @@ -75,7 +75,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -83,7 +83,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -95,7 +94,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -122,15 +120,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -224,6 +218,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -244,7 +314,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -301,6 +371,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -411,102 +488,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -567,7 +548,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1001,7 +982,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1014,7 +995,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1053,7 +1034,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1061,7 +1042,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1100,13 +1081,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1138,17 +1117,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1191,7 +1168,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1347,7 +1323,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1379,7 +1354,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1431,7 +1405,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1460,7 +1433,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1601,8 +1573,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2119,12 +2089,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2243,9 +2207,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2483,7 +2444,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2559,8 +2519,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3139,7 +3097,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3391,7 +3349,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3534,7 +3491,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3582,7 +3538,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3620,7 +3575,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3917,19 +3871,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4037,6 +3987,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4085,7 +4051,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4145,7 +4110,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4210,12 +4175,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4278,9 +4242,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4314,7 +4277,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4348,22 +4311,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4372,7 +4323,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4473,12 +4423,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4592,18 +4539,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4634,7 +4577,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4746,7 +4688,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4813,8 +4754,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4868,7 +4809,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4927,7 +4867,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5176,7 +5115,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5226,7 +5164,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5316,8 +5254,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5413,7 +5350,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5443,14 +5379,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5543,7 +5476,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5580,7 +5513,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5710,7 +5642,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6057,7 +5988,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6163,7 +6093,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6345,7 +6274,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6398,12 +6326,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6423,10 +6348,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6463,7 +6385,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6475,11 +6397,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6501,7 +6423,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6729,12 +6651,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6744,21 +6663,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6836,8 +6747,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6849,12 +6758,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6864,11 +6771,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6980,7 +6885,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7010,7 +6914,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7226,8 +7134,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7239,13 +7146,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7265,7 +7167,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7274,13 +7176,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7295,10 +7195,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7308,7 +7206,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7340,14 +7238,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7361,7 +7258,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7388,13 +7285,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7415,7 +7310,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7498,7 +7392,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7542,7 +7436,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7550,7 +7444,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7584,7 +7478,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7635,15 +7529,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7707,7 +7592,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7744,7 +7629,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7787,13 +7672,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7815,31 +7698,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7856,7 +7739,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7872,7 +7754,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7899,7 +7780,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7959,8 +7840,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8097,7 +7976,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8278,7 +8157,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8299,17 +8178,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8329,13 +8206,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8353,7 +8228,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8418,7 +8293,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8429,7 +8303,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8550,11 +8423,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8605,12 +8478,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8619,15 +8492,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8728,7 +8601,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8784,7 +8657,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8862,6 +8734,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8876,6 +8760,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9013,7 +8902,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9029,7 +8918,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9368,8 +9256,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9427,12 +9313,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9486,6 +9370,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9562,7 +9457,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9598,11 +9493,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9610,7 +9505,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9664,7 +9558,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9695,7 +9588,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9709,7 +9601,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9744,7 +9635,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9789,7 +9679,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9880,7 +9769,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9967,7 +9855,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10033,7 +9931,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10042,21 +9939,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10075,11 +9957,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10088,11 +9984,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10113,7 +10004,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10123,7 +10013,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10182,7 +10071,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10236,44 +10124,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10289,7 +10166,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10331,7 +10207,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10529,9 +10404,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10543,7 +10416,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10564,7 +10436,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10729,7 +10600,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10748,7 +10618,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10861,7 +10730,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11585,8 +11453,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11646,12 +11512,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11789,7 +11653,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11937,7 +11800,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12002,7 +11864,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12032,24 +11893,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12117,7 +11970,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12231,7 +12083,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12244,7 +12095,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12256,12 +12106,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12283,22 +12131,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12480,7 +12322,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12515,12 +12356,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12533,12 +12372,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12619,7 +12456,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12658,19 +12494,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13012,7 +12845,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13034,7 +12866,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13219,15 +13050,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13334,7 +13160,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13360,19 +13185,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13427,12 +13249,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13445,14 +13265,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13724,7 +13541,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13732,19 +13548,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13765,7 +13578,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13776,19 +13588,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13806,7 +13615,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13879,7 +13687,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13895,15 +13702,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14127,7 +13929,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14140,7 +13941,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14196,7 +13996,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14211,9 +14010,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14314,8 +14110,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14335,8 +14130,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14406,7 +14200,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14441,7 +14235,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14454,7 +14247,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14577,7 +14370,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14587,7 +14380,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14597,8 +14389,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14673,7 +14463,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14688,7 +14478,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14743,7 +14532,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14802,8 +14591,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14822,11 +14611,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14890,7 +14679,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14932,7 +14720,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15060,8 +14848,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15105,13 +14892,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15134,10 +14919,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15186,8 +14976,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15209,7 +14999,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15254,7 +15044,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15296,7 +15085,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15397,7 +15186,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15528,8 +15317,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15545,7 +15333,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15584,7 +15372,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15594,7 +15382,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15625,7 +15413,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15655,7 +15443,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15700,7 +15488,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15721,7 +15509,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15729,7 +15517,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15741,7 +15529,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15793,7 +15581,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15801,7 +15589,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15861,7 +15649,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15915,7 +15703,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15968,13 +15756,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16213,7 +15999,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16272,8 +16057,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16356,7 +16140,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16582,7 +16365,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16634,8 +16416,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16815,7 +16596,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16855,7 +16636,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16875,12 +16656,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16905,7 +16684,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16921,7 +16700,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16968,11 +16747,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17326,11 +17105,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.mo b/conf/locale/es_AR/LC_MESSAGES/djangojs.mo index 4d2dd12ae4..0b5c307251 100644 Binary files a/conf/locale/es_AR/LC_MESSAGES/djangojs.mo and b/conf/locale/es_AR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.po b/conf/locale/es_AR/LC_MESSAGES/djangojs.po index d6b9ae60d7..c5e3adbbec 100644 --- a/conf/locale/es_AR/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_AR/LC_MESSAGES/djangojs.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -83,8 +82,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -92,17 +89,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -195,7 +189,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -203,7 +196,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -224,7 +216,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -243,7 +234,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -307,11 +297,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -319,7 +307,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -330,21 +317,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1215,7 +1199,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1229,7 +1212,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1566,18 +1548,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1695,7 +1673,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1742,7 +1719,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1752,13 +1728,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1788,8 +1760,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2089,12 +2059,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2135,7 +2103,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2144,32 +2111,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2270,7 +2231,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2283,7 +2243,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2471,7 +2430,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2484,10 +2442,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2498,12 +2452,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2757,7 +2705,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2851,7 +2798,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2921,6 +2868,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2942,7 +2893,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2950,7 +2901,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3123,6 +3074,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3169,18 +3128,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3189,7 +3136,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3226,7 +3172,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3237,7 +3183,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3336,8 +3281,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3546,7 +3491,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3604,8 +3548,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3646,18 +3619,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3666,11 +3627,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3745,8 +3701,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3851,7 +3806,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3890,7 +3844,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3918,7 +3871,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4033,14 +3985,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4150,7 +4097,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4318,7 +4264,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4376,6 +4321,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4547,6 +4496,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4825,7 +4782,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4893,6 +4849,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4903,10 +4873,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4932,12 +4910,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5037,7 +5013,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5108,10 +5083,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5244,7 +5215,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5323,7 +5293,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5377,7 +5346,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5497,15 +5465,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5515,11 +5477,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5535,7 +5494,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5560,8 +5518,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5588,8 +5544,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/es_EC/LC_MESSAGES/django.mo b/conf/locale/es_EC/LC_MESSAGES/django.mo index f0932b50e6..7e8a538436 100644 Binary files a/conf/locale/es_EC/LC_MESSAGES/django.mo and b/conf/locale/es_EC/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_EC/LC_MESSAGES/django.po b/conf/locale/es_EC/LC_MESSAGES/django.po index 23983472de..63a01ec874 100644 --- a/conf/locale/es_EC/LC_MESSAGES/django.po +++ b/conf/locale/es_EC/LC_MESSAGES/django.po @@ -95,7 +95,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: x_vela \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" @@ -126,7 +126,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -134,7 +134,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -146,7 +145,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -173,15 +171,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -275,6 +269,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -295,7 +365,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -352,6 +422,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -462,102 +539,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -618,7 +599,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1052,7 +1033,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1065,7 +1046,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1104,7 +1085,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1112,7 +1093,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1151,13 +1132,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1189,17 +1168,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1242,7 +1219,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1398,7 +1374,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1430,7 +1405,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1482,7 +1456,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1511,7 +1484,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1652,8 +1624,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2170,12 +2140,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2294,9 +2258,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2534,7 +2495,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2610,8 +2570,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3190,7 +3148,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3442,7 +3400,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3585,7 +3542,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3633,7 +3589,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3671,7 +3626,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3968,19 +3922,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4088,6 +4038,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4136,7 +4102,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4196,7 +4161,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4261,12 +4226,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4329,9 +4293,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4365,7 +4328,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4399,22 +4362,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4423,7 +4374,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4524,12 +4474,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4643,18 +4590,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4685,7 +4628,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4797,7 +4739,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4864,8 +4805,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4919,7 +4860,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4978,7 +4918,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5227,7 +5166,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5277,7 +5215,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5367,8 +5305,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5464,7 +5401,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5494,14 +5430,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5594,7 +5527,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5631,7 +5564,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5761,7 +5693,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6108,7 +6039,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6214,7 +6144,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6396,7 +6325,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6449,12 +6377,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6474,10 +6399,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6514,7 +6436,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6526,11 +6448,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6552,7 +6474,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6780,12 +6702,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6795,21 +6714,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6887,8 +6798,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6900,12 +6809,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6915,11 +6822,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7031,7 +6936,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7061,7 +6965,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7277,8 +7185,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7290,13 +7197,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7316,7 +7218,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7325,13 +7227,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7346,10 +7246,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7359,7 +7257,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7391,14 +7289,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7412,7 +7309,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7439,13 +7336,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7466,7 +7361,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7549,7 +7443,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7593,7 +7487,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7601,7 +7495,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7635,7 +7529,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7686,15 +7580,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7758,7 +7643,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7795,7 +7680,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7838,13 +7723,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7866,31 +7749,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7907,7 +7790,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7923,7 +7805,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7950,7 +7831,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -8010,8 +7891,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8148,7 +8027,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8329,7 +8208,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8350,17 +8229,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8380,13 +8257,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8404,7 +8279,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8469,7 +8344,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8480,7 +8354,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8601,11 +8474,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8656,12 +8529,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8670,15 +8543,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8779,7 +8652,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8835,7 +8708,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8913,6 +8785,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8927,6 +8811,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9064,7 +8953,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9080,7 +8969,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9419,8 +9307,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9478,12 +9364,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9537,6 +9421,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9613,7 +9508,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9649,11 +9544,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9661,7 +9556,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9715,7 +9609,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9746,7 +9639,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9760,7 +9652,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9795,7 +9686,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9840,7 +9730,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9931,7 +9820,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10018,7 +9906,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10084,7 +9982,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10093,21 +9990,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10126,11 +10008,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10139,11 +10035,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10164,7 +10055,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10174,7 +10064,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10233,7 +10122,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10287,44 +10175,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10340,7 +10217,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10382,7 +10258,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10580,9 +10455,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10594,7 +10467,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10615,7 +10487,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10780,7 +10651,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10799,7 +10669,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10912,7 +10781,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11636,8 +11504,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11697,12 +11563,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11840,7 +11704,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11988,7 +11851,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12053,7 +11915,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12083,24 +11944,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12168,7 +12021,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12282,7 +12134,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12295,7 +12146,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12307,12 +12157,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12334,22 +12182,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12531,7 +12373,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12566,12 +12407,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12584,12 +12423,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12670,7 +12507,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12709,19 +12545,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13063,7 +12896,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13085,7 +12917,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13270,15 +13101,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13385,7 +13211,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13411,19 +13236,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13478,12 +13300,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13496,14 +13316,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13775,7 +13592,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13783,19 +13599,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13816,7 +13629,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13827,19 +13639,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13857,7 +13666,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13930,7 +13738,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13946,15 +13753,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14178,7 +13980,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14191,7 +13992,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14247,7 +14047,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14262,9 +14061,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14365,8 +14161,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14386,8 +14181,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14457,7 +14251,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14492,7 +14286,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14505,7 +14298,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14628,7 +14421,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14638,7 +14431,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14648,8 +14440,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14724,7 +14514,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14739,7 +14529,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14794,7 +14583,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14853,8 +14642,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14873,11 +14662,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14941,7 +14730,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14983,7 +14771,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15111,8 +14899,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15156,13 +14943,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15185,10 +14970,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15237,8 +15027,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15260,7 +15050,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15305,7 +15095,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15347,7 +15136,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15448,7 +15237,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15579,8 +15368,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15596,7 +15384,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15635,7 +15423,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15645,7 +15433,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15676,7 +15464,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15706,7 +15494,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15751,7 +15539,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15772,7 +15560,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15780,7 +15568,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15792,7 +15580,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15844,7 +15632,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15852,7 +15640,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15912,7 +15700,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15966,7 +15754,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16019,13 +15807,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16264,7 +16050,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16323,8 +16108,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16407,7 +16191,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16633,7 +16416,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16685,8 +16467,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16866,7 +16647,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16906,7 +16687,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16926,12 +16707,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16956,7 +16735,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16972,7 +16751,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17019,11 +16798,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17377,11 +17156,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_EC/LC_MESSAGES/djangojs.mo b/conf/locale/es_EC/LC_MESSAGES/djangojs.mo index daed4006cd..eec0c71488 100644 Binary files a/conf/locale/es_EC/LC_MESSAGES/djangojs.mo and b/conf/locale/es_EC/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_EC/LC_MESSAGES/djangojs.po b/conf/locale/es_EC/LC_MESSAGES/djangojs.po index 7ac091f791..7fb3849ad6 100644 --- a/conf/locale/es_EC/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_EC/LC_MESSAGES/djangojs.po @@ -49,8 +49,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -63,7 +63,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -103,8 +102,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -112,17 +109,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -215,7 +209,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -223,7 +216,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -244,7 +236,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -263,7 +254,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -327,11 +317,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -339,7 +327,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -350,21 +337,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1235,7 +1219,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1249,7 +1232,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1586,18 +1568,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1715,7 +1693,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1762,7 +1739,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1772,13 +1748,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1808,8 +1780,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2109,12 +2079,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2155,7 +2123,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2164,32 +2131,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2290,7 +2251,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2303,7 +2263,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2491,7 +2450,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2504,10 +2462,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2518,12 +2472,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2777,7 +2725,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2871,7 +2818,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2941,6 +2888,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2962,7 +2913,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2970,7 +2921,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3143,6 +3094,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3189,18 +3148,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3209,7 +3156,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3246,7 +3192,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3257,7 +3203,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3356,8 +3301,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3566,7 +3511,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3624,8 +3568,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3666,18 +3639,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3686,11 +3647,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3765,8 +3721,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3871,7 +3826,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3910,7 +3864,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3938,7 +3891,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4053,14 +4005,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4170,7 +4117,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4338,7 +4284,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4396,6 +4341,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4567,6 +4516,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4845,7 +4802,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4913,6 +4869,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4923,10 +4893,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4952,12 +4930,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5057,7 +5033,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5128,10 +5103,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5264,7 +5235,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5343,7 +5313,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5397,7 +5366,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5517,15 +5485,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5535,11 +5497,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5555,7 +5514,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5580,8 +5538,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5608,8 +5564,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/es_ES/LC_MESSAGES/django.mo b/conf/locale/es_ES/LC_MESSAGES/django.mo index 1e57c40ec5..9cd7e54864 100644 Binary files a/conf/locale/es_ES/LC_MESSAGES/django.mo and b/conf/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_ES/LC_MESSAGES/django.po b/conf/locale/es_ES/LC_MESSAGES/django.po index a2da6d9248..0d10158eac 100644 --- a/conf/locale/es_ES/LC_MESSAGES/django.po +++ b/conf/locale/es_ES/LC_MESSAGES/django.po @@ -71,6 +71,7 @@ # Luis Ricardo Ruiz , 2013 # Mariangeles Fernandez , 2015 # Marta, 2014 +# Miguel Ángel Candel , 2015 # Miguel Angel Cordova , 2014 # Natalia, 2013 # Cristian Salamea , 2013 @@ -141,7 +142,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-05 17:31+0000\n" "Last-Translator: Mariangeles Fernandez \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" @@ -172,7 +173,7 @@ msgstr "Mis notas" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "Foro" @@ -180,7 +181,6 @@ msgstr "Foro" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html #, fuzzy msgid "Problem" @@ -197,7 +197,6 @@ msgstr "Avanzado" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -224,15 +223,11 @@ msgstr "Completo" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nombre" @@ -327,6 +322,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "El nombre de usuario debe contener al menos dos caracteres." + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Debes indicar un e-mail válido." + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Debes indicar una contraseña válida" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Tu nombre legal debe contener al menos dos caracteres" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"El nombre de usuario ha de estar formado por caracteres A-Z y 0-9 sin " +"espacios." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Debes aceptar las condiciones del servicio." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Debes especificar un nivel de estudios" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Debes especificar tu sexo" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Debes especificar tu año de nacimiento" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Debes especificar tu dirección postal" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Debes especificar tus objetivos" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Debes especificar una ciudad" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Debes especificar un país" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Para registrarte, debes seguir el Código de Honor." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Falta uno o más campos obligatorios" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Los campos nombre de usuario y contraseña no pueden coincidir" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Contraseña:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -349,7 +422,7 @@ msgstr "Mujer" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Otro" @@ -406,6 +479,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -540,104 +620,6 @@ msgstr "Ya existe una cuenta con el nombre '{username}'." msgid "An account with the Email '{email}' already exists." msgstr "Ya existe una cuenta con el e-mail '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Error (401 {field}). Ponte en contacto por e-mail." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Para registrarte, debes seguir el Código de Honor." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Debes aceptar las condiciones del servicio." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "El nombre de usuario debe contener al menos dos caracteres." - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Debes indicar un e-mail válido." - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Tu nombre legal debe contener al menos dos caracteres" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Debes indicar una contraseña válida" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Debes aceptar las Condiciones del servicio" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Debes aceptar el Código de Honor" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Debes especificar un nivel de estudios" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Debes especificar tu sexo" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Debes especificar tu año de nacimiento" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Debes especificar tu dirección postal" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Debes especificar tus objetivos" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Debes especificar una ciudad" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Debes especificar un país" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Falta uno o más campos obligatorios" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "El nombre de usuario no puede ocupar más de {num} caracteres" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "El e-mail no puede ocupar más de {num} caracteres" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Se requiere un e-mail válido." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"El nombre de usuario ha de estar formado por caracteres A-Z y 0-9 sin " -"espacios." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Contraseña:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Los campos nombre de usuario y contraseña no pueden coincidir" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "No se ha podido enviar el e-mail de activación." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -714,7 +696,7 @@ msgstr "" msgid "Name required" msgstr "Se requiere un nombre" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID no válida" @@ -1152,7 +1134,7 @@ msgstr "incorrecto" msgid "incomplete" msgstr "incompleto" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "sin responder" @@ -1165,7 +1147,7 @@ msgstr "procesando" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "Elección de grupo: etiqueta inesperada {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Respuesta recibida." @@ -1212,7 +1194,7 @@ msgstr "Error ejecutando el código." msgid "Cannot connect to the queue" msgstr "No se puede conectar a la cola" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "No se ha especificado una fórmula" @@ -1220,7 +1202,7 @@ msgstr "No se ha especificado una fórmula" msgid "Couldn't parse formula: {error_msg}" msgstr "No se pudo analizar la fórmula: {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Error al intentar mostrar la vista previa" @@ -1261,13 +1243,11 @@ msgstr "No está permitida la ejecución de código Javascript no seguro." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "Casillas de verificación" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "Opción múltiple" @@ -1300,17 +1280,15 @@ msgstr "Opción Verdadero o Falso" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "Desplegable" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Entrada numérica" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Hubo un problema con la respuesta del profesor a este ejercicio." @@ -1361,7 +1339,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "Entrada de texto" @@ -1529,7 +1506,6 @@ msgstr "Datos XML del problema" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1561,7 +1537,6 @@ msgstr "Anotación" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Este nombre aparece en la navegación horizontal de la parte superior de la " @@ -1624,7 +1599,6 @@ msgstr "" "Define cuándo mostrar la respuesta del problema. Se puede fijar un valor por" " defecto en Configuración avanzada." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Siempre" @@ -1653,7 +1627,6 @@ msgstr "Correcto o vencido" msgid "Past Due" msgstr "Fuera de plazo" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Nunca" @@ -1810,8 +1783,6 @@ msgstr "Si el error persiste, por favor, contacta con el equipo docente." #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Ejercicio cerrado." @@ -2423,12 +2394,6 @@ msgid "Use your course outline to build your first Section and Subsection." msgstr "" "Usa tu resumen del curso para construir tus primeras sección y subsección." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Editar perfil del curso" @@ -2565,9 +2530,6 @@ msgstr "" "curso, descripción y más. Haz un borrador del texto que los alumnos leerán " "antes de decidir si inscribirse en tu curso." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Editar Horario y Detalles del curso" @@ -2857,7 +2819,6 @@ msgstr "Ambos" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Acerca de" @@ -2937,8 +2898,6 @@ msgstr "" msgid "Text" msgstr "Texto" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3596,7 +3555,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Libros de texto" @@ -3890,7 +3849,6 @@ msgstr "" "reportar algún problema, contacta a moocsupport@mathworks.com." #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -4048,7 +4006,6 @@ msgstr "Evaluación por el profesor" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Evaluación por Inteligencia artificial" @@ -4102,7 +4059,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Error al obtener respuesta del calificador." @@ -4142,7 +4098,6 @@ msgstr "En progreso" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Hecho" @@ -4506,19 +4461,15 @@ msgstr "Buscar" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Nombre de usuario" @@ -4630,6 +4581,22 @@ msgstr "El usuario {username} no existe." msgid "User {username} has never accessed problem {location}" msgstr "El usuario {username} no ha accedido nunca al problema {location}" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4686,7 +4653,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "Dirección de correo electrónico" @@ -4754,7 +4720,7 @@ msgstr "contraseña fija" msgid "All ok!" msgstr "¡Todo correcto!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Debes proporcionar un nombre de usuario" @@ -4822,8 +4788,7 @@ msgstr "Número total de usuarios" msgid "Courses loaded in the modulestore" msgstr "Cursos cargados en el almacén" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html #, fuzzy msgid "username" msgstr "" @@ -4832,7 +4797,7 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Identificador de usuario" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "e-mail" @@ -4905,9 +4870,8 @@ msgstr "Cambio de la sucursal con éxito: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "Curso {course_name} cargado
Errores:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "Nombre del curso" @@ -4941,7 +4905,7 @@ msgstr "Error - No es posible acceder al curso con ID {0}
{1}
" msgid "Deleted" msgstr "Eliminado" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "course_id" @@ -4977,22 +4941,10 @@ msgstr "" "Importa el repositorio git especificado y la sucursal opcional en el almacén" " del módulo y opcionalmente el directorio especificado." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Re-abrir hilo" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Hilo cerrado" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "El título no puede estar en blanco" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "El cuerpo no puede estar en blanco" @@ -5001,7 +4953,6 @@ msgstr "El cuerpo no puede estar en blanco" msgid "Topic doesn't exist" msgstr "El tema no existe" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Nivel de comentario demasiado profundo" @@ -5112,12 +5063,9 @@ msgstr "Identificador de usuario" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Correo electrónico" @@ -5256,18 +5204,14 @@ msgstr "" msgid "coupon id is None" msgstr "El ID del cupón está vacío" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "El cupón con el identificador ({coupon_id}) no existe" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "El cupón con el identificador ({coupon_id}) ya está inactivo" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -5303,7 +5247,6 @@ msgstr "El cupón con el código ({code}) se ha añadido satisfactoriamente" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "El cupón con el código ({code}) ya existe para este curso" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "Identificador de cupón no encontrado" @@ -5425,7 +5368,6 @@ msgstr "Por favor, introduce el nombre de la tarea" msgid "Invalid assignment name '{name}'" msgstr "Nombre de la tarea inválido '{name}'" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Correo electrónico externo" @@ -5495,8 +5437,8 @@ msgstr "Identificación" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5557,7 +5499,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "No se ha establecido fecha límite para ese alumno y esa unidad." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Plazo de entrega ampliado" @@ -5616,7 +5557,6 @@ msgstr "generado" msgid "cohorted" msgstr "agrupado" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "No existe información de estado disponible" @@ -5906,7 +5846,6 @@ msgid "View submissions that have been flagged by students as inappropriate." msgstr "" "Ver los envíos que han sido marcados por los alumnos como no apropiados." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Nuevos envíos a calificar" @@ -5962,7 +5901,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -6064,8 +6003,7 @@ msgstr "Donativo para {platform_name}" msgid "Page {page_number} of {page_count}" msgstr "Página {page_number} de {page_count}" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "Factura" @@ -6165,7 +6103,6 @@ msgstr "Fecha del reembolso" msgid "Amount of Refund" msgstr "Cantidad reembolsada" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Tasas del servicio (si las hubiera)" @@ -6195,14 +6132,11 @@ msgstr "Moneda" msgid "Comments" msgstr "Comentarios" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Universidad" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "Curso" @@ -6295,7 +6229,7 @@ msgstr "Ya has sido registrado en el curso {course_id}." msgid "Course added to cart." msgstr "Cursos añadidos al carrito de la compra." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "No existe descuento para este código '{code}'." @@ -6338,7 +6272,6 @@ msgstr "No tienes permisos para ver esta página." msgid "The payment processor did not return a required parameter: {0}" msgstr "La plataforma de pago no devolvió un parámetro requerido: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6516,7 +6449,6 @@ msgstr "" "Saldo insuficiente en la cuenta. Posible solución: vuelve a intentarlo con " "otra forma de pago" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Motivo desconocido" @@ -6956,7 +6888,6 @@ msgstr "Confirmación de pago" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Tomar foto" @@ -7064,7 +6995,6 @@ msgstr "Hora de cumplimiento:" msgid "Refund Request Time:" msgstr "Hora de solicitud de reembolso:" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Su reinicio de contraseña se ha completado" @@ -7282,7 +7212,6 @@ msgstr "Eliminar artículo" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #, fuzzy msgid "Delete" @@ -7345,12 +7274,9 @@ msgstr "Previsualizar" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7370,10 +7296,7 @@ msgstr "Previsualización Wiki" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "abrir ventana" @@ -7414,7 +7337,7 @@ msgstr "Auto registro:" msgid "Change" msgstr "Cambiar" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Fusionar lo seleccionado con lo actual..." @@ -7426,11 +7349,11 @@ msgstr "Cambiar a la versión seleccionada" msgid "Wiki Revision Preview" msgstr "Previsualización de la revisión Wiki" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Volver a la vista de historial" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Cambiar a esta versión" @@ -7454,7 +7377,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Después de esto, es importante hacer una revisión manual." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Creada una nueva versión combinada" @@ -7696,12 +7619,9 @@ msgstr "No puedes crear dos grupos con el mismo nombre" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "usuario@dominio.com" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -7713,24 +7633,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Contraseña" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" -"Parece que {email_address} y {username} pertenecen a una cuenta ya " -"existente. Inténtalo de nuevo con una dirección de correo electrónico y un " -"usuario diferentes." - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7812,8 +7721,6 @@ msgstr "Por favor, selecciona un país." #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Código de Honor" @@ -7830,12 +7737,10 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Condiciones del servicio y Código de Honor" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "Acepto los {terms_of_service} de {platform_name} ." -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "Debes aceptar los {terms_of_service} de {platform_name} ." @@ -7845,7 +7750,6 @@ msgstr "Debes aceptar los {terms_of_service} de {platform_name} ." #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html #, fuzzy msgid "Terms of Service" msgstr "" @@ -7854,7 +7758,6 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Condiciones del servicio" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Id de actualización del curso no válida." @@ -7990,7 +7893,6 @@ msgstr "" "Ya hay definido un curso con la misma organización y número de curso. Por " "favor, cambia al menos uno de estos campos para que sea único." -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -8024,9 +7926,12 @@ msgid "must have at least one group" msgstr "Debe tener por lo menos un grupo" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" -"Esta configuración de grupo ya está siendo usada y no se puede borrar." #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -8255,8 +8160,7 @@ msgstr "No se encontró la página" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -8268,13 +8172,8 @@ msgstr "Cargando" msgid "close" msgstr "cerrar" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -8294,7 +8193,7 @@ msgstr "Descartar" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Ajustes" @@ -8303,13 +8202,11 @@ msgstr "Ajustes" msgid "Error:" msgstr "Error:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organización:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -8324,10 +8221,8 @@ msgstr "Cursos" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "Correo electrónico" @@ -8337,7 +8232,7 @@ msgstr "Correo electrónico" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "ejemplo: usuario@dominio.com" @@ -8369,14 +8264,13 @@ msgstr "ejemplo: Juan López" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Identificador público de usuario " #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "ejemplo: JuanLanas" @@ -8390,7 +8284,7 @@ msgid "Requirements" msgstr "Requisitos" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Detalles" @@ -8417,13 +8311,11 @@ msgstr "Visita tu {link_start}Panel de control{link_end} para ver tus cursos." #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Política de privacidad" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ayuda" @@ -8444,7 +8336,6 @@ msgstr "Lo sentimos, hubo un error en el proceso de inscripción" msgid "Now choose your course track:" msgstr "Elige ahora la ruta de tu curso:" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "Consigue un Certificado Verificado" @@ -8537,7 +8428,7 @@ msgstr "Nuevo" msgid "Dashboard" msgstr "Panel de control" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "editar" @@ -8581,7 +8472,7 @@ msgstr "Enlazar" msgid "Order History" msgstr "Historial de pedidos" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Restablecer contraseña" @@ -8589,7 +8480,7 @@ msgstr "Restablecer contraseña" msgid "Current Courses" msgstr "Cursos activos" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "Parece que aún no te has inscrito en ningún curso." @@ -8625,7 +8516,7 @@ msgstr "" "Se ha enviado un correo electrónico a {email}. Sigue las instrucciones de " "dicho correo para cambiar tu contraseña." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Cambiar correo electrónico" @@ -8682,15 +8573,6 @@ msgstr "Cambiar mi nombre" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Desinscribirse" @@ -8756,7 +8638,7 @@ msgstr "Alumnos rechazados" msgid "Debug: " msgstr "Depuración:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Autenticación externa fallida" @@ -8793,7 +8675,7 @@ msgstr "Enviado" msgid "Puzzle Leaderboard" msgstr "Tablero de puntuación para acertijos" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "Sobre edX" @@ -8846,13 +8728,11 @@ msgstr "Noticias" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contacto" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Preguntas frecuentes" @@ -8874,31 +8754,31 @@ msgstr "Síguenos" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Meetup" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -8915,7 +8795,6 @@ msgid "Android app on Google Play" msgstr "Android app en Google Play" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Trabajos" @@ -8931,7 +8810,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "Con la tecnología de Open edX" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Contraseña restablecida" @@ -8962,7 +8840,7 @@ msgstr "Restablecer mi contraseña" msgid "Email is incorrect." msgstr "La dirección de correo electrónico no es válida" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "Ayuda de {platform_name}" @@ -9035,8 +8913,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -9182,7 +9058,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Información útil" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Iniciar sesión vía OpenID" @@ -9384,7 +9260,7 @@ msgstr "Datos planos:" msgid "Accepted" msgstr "Aceptado" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Error" @@ -9405,17 +9281,15 @@ msgstr "Confirmar" msgid "Reject" msgstr "Rechazar" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Cómo funciona" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Buscar cursos" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Escuelas y Socios" @@ -9435,13 +9309,11 @@ msgstr "Cerrar sesión" msgid "Shopping Cart" msgstr "Carrito de compra" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Registrarse" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "Iniciar sesión" @@ -9461,7 +9333,7 @@ msgstr "Navegación global" msgid "Schools" msgstr "Instituciones" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Regístrate ahora" @@ -9532,7 +9404,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Ocurrieron los siguientes errores al procesar tu registro:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9545,7 +9416,6 @@ msgid "Enter a public username:" msgstr "Introduce un identificador público de usuario:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "Se mostrará en cualquier discusión o foro en los que participes" @@ -9688,11 +9558,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Por favor completa los siguientes campos para crear tu cuenta." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Se requiere para cualquier certificado que puedas obtener" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "no podrá ser cambiada después" @@ -9746,12 +9616,12 @@ msgstr "" "la plataforma {platform_name}. Pulsa {dashboard_link_start}aquí{link_end} " "para volver al panel de control." -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Previo" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Siguiente" @@ -9760,15 +9630,15 @@ msgstr "Siguiente" msgid "Sign Up for {platform_name}" msgstr "Apuntarse en {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "Ej: nombre@dominio.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "Ej: nombre (Así se mostrará en los foros)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "Ej: Nombre (Así aparecerá en los certificados)" @@ -9871,7 +9741,7 @@ msgstr "Eliminar situación del alumno" msgid "Rescore Student Submission" msgstr "Re-puntuar el envío del alumno" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Campos de módulo" @@ -9927,7 +9797,6 @@ msgstr "Inscripciones y administración" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Logs de Git" @@ -10007,6 +9876,18 @@ msgstr "Borrar curso del sitio web" msgid "Platform Version" msgstr "Versión de la plataforma" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -10021,6 +9902,11 @@ msgstr "Fecha" msgid "Git Action" msgstr "Acción git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -10174,7 +10060,7 @@ msgstr "Ir al comienzo de la transcripción." msgid "Download video" msgstr "Descargar vídeo" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Descargar transcripción" @@ -10190,7 +10076,6 @@ msgstr "Tus palabras:" msgid "Total number of words:" msgstr "Número total de palabras:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Abrir calculadora" @@ -10546,8 +10431,6 @@ msgstr "{chapter}, capítulo actual" msgid "due {date}" msgstr "fecha límite: {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10610,12 +10493,10 @@ msgstr "Visión general" msgid "Share with friends and family!" msgstr "¡Compartir con amigos y familiares!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -10670,6 +10551,17 @@ msgstr "" msgid "Additional Resources" msgstr "Recursos adicionales" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Inscribirse" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -10752,7 +10644,7 @@ msgid "No content has been added to this course" msgstr "No se ha añadido contenido a este curso" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -10793,11 +10685,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Ver actualizaciones en Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Novedades y noticias del curso" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Navegación de apuntes" @@ -10805,7 +10697,6 @@ msgstr "Navegación de apuntes" msgid "Course Handouts" msgstr "Apuntes del curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "Panel de control del profesor por defecto" @@ -10863,7 +10754,6 @@ msgstr "Administrar grupos" msgid "Grade Downloads" msgstr "Descarga de calificaciones" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10905,7 +10795,6 @@ msgstr "" "¡Las tareas definidas para este curso deben corresponder con las almacenadas" " en el libro de calificaciones para que esto funcione correctamente!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Nombre del libro de calificaciones:" @@ -10919,7 +10808,6 @@ msgstr "Nombre de la tarea:" msgid "Course-specific grade adjustment" msgstr "Ajustes de calificaciones específicos al curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10960,7 +10848,6 @@ msgstr "Datos de inscripciones" msgid "Pull enrollment from remote gradebook" msgstr "Importe inscripciones del libro de calificaciones remoto" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Sección:" @@ -11011,7 +10898,6 @@ msgstr "Día" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Alumnos" @@ -11106,7 +10992,6 @@ msgstr "Duración (seg.)" msgid "Task Progress" msgstr "Progreso de la tarea" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "desconocido" @@ -11195,8 +11080,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Progreso en el curso para el alumno '{username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "Descarga tu certificado" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -11277,7 +11172,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "Tu {cert_name_short} se está generando" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Este enlace abre/descarga un documento PDF" @@ -11286,25 +11180,6 @@ msgstr "Este enlace abre/descarga un documento PDF" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Dado que no disponíamos de un juego válido de fotos de verificación de tu " -"identidad mientras se generaba tu {cert_name_long}, no pudimos extenderte un" -" {cert_name_short} verificado. Te creamos en su lugar un Código de Honor " -"{cert_name_short}." - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "Descarga tu {cert_name_short} (PDF)" @@ -11325,11 +11200,29 @@ msgstr "Descarga tu ID verificada {cert_name_short} (PDF)" msgid "Complete our course feedback survey" msgstr "Completa nuestra encuesta de retroalimentación sobre el curso" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Dado que no disponíamos de un juego válido de fotos de verificación de tu " +"identidad mientras se generaba tu {cert_name_long}, no pudimos extenderte un" +" {cert_name_short} verificado. Te creamos en su lugar un Código de Honor " +"{cert_name_short}." + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Imagen de portada" @@ -11338,11 +11231,6 @@ msgstr "{course_number} {course_name} Imagen de portada" msgid "Your verification is pending" msgstr "Tu verificación está pendiente" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Inscrito como:" @@ -11363,7 +11251,6 @@ msgstr "Verificado: Pendiente de verificación" msgid "You're enrolled as a verified student" msgstr "Estás inscrito como alumno verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "Cinta/insignia verificada por ID" @@ -11373,7 +11260,6 @@ msgstr "Cinta/insignia verificada por ID" msgid "Verified" msgstr "Verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Te has apuntado a este curso como alumno Código de Honor" @@ -11432,7 +11318,6 @@ msgstr "Aún necesitas verificarte en este curso." msgid "Verify Now" msgstr "Verifícate ahora." -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "¡Ya has verificado tu ID!" @@ -11494,32 +11379,23 @@ msgstr "" "cuenta{contact_link_end} para requerir el pago o puedes " "{unenroll_link_start}borrarte{unenroll_link_end} de este curso." -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Ver curso archivado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Ver curso" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "¿Seguro que quieres borrarte del curso adquirido?" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "¿Seguro que quieres borrarte de" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " @@ -11527,12 +11403,10 @@ msgid "" msgstr "" "¿Seguro que quieres borrarte de la ruta {cert_name_long} verificada de" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Configuración de e-mail" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11551,7 +11425,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: Volver a verificar antes de {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Acciones de notificación" @@ -11598,7 +11471,6 @@ msgstr "Denegadas:" msgid "Approved:" msgstr "Aprobadas:" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "Estado de verificación de identidad" @@ -11803,9 +11675,7 @@ msgstr "Editando entrada" msgid "Edit post title" msgstr "Editar el título de la publicación" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Título" @@ -11817,7 +11687,6 @@ msgstr "Actualizar entrada" msgid "Show Comments (%(num_comments)s)" msgstr "Mostrar comentarios (%(num_comments)s)" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Añadir un comentario" @@ -11838,7 +11707,6 @@ msgstr "aprobado %(time_ago)s por %(user)s" msgid "endorsed %(time_ago)s" msgstr "aprobado %(time_ago)s" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "Informado" @@ -12007,7 +11875,6 @@ msgstr "Añadir mensaje" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "Tipo de mensaje:" @@ -12028,7 +11895,6 @@ msgstr "" msgid "Topic Area:" msgstr "Área temática:" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "Filtros temáticos" @@ -12144,7 +12010,6 @@ msgstr "" msgid "User Profile" msgstr "Perfil de usuario" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -12995,8 +12860,6 @@ msgstr "Marcar como contenido inapropiado para una revisión posterior" msgid "Skip" msgstr "Omitir" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -13056,12 +12919,10 @@ msgstr "Nombre del curso a mostrar:" msgid "Has the course started?" msgstr "¿Ha comenzado el curso?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Sí" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "No" @@ -13234,7 +13095,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -13382,7 +13242,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -13448,7 +13307,6 @@ msgstr "Por favor, introduce el valor numérico del descuento" msgid "Edit Coupon" msgstr "Editar cupón" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "Actualizar cupón" @@ -13483,9 +13341,6 @@ msgstr "" "ampliar, no acortar." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -13494,15 +13349,10 @@ msgstr "" " aquí:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Correo electrónico o identificador de usuario del alumno" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Selecciona la unidad a evaluar:" @@ -13581,7 +13431,6 @@ msgstr "Generar el código modal de registro" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "Nombre de la organización" @@ -13701,7 +13550,6 @@ msgstr "Cargando la lista de ejercicios..." msgid "Gender Distribution" msgstr "Distribución por género" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Panel de control del profesor" @@ -13714,7 +13562,6 @@ msgstr "Volver al antiguo panel" msgid "Batch Enrollment" msgstr "Inscripciones en lote" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -13730,12 +13577,10 @@ msgstr "" "No recibirás una notificación de los correos que son devueltos, así que por " "favor vuelve a comprobar la ortografía." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Dirección de correos/nombres de usuarios" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Auto inscribirse" @@ -13764,12 +13609,10 @@ msgstr "" "Seleccionar esta casilla no tiene efectos si \"Abandonar curso\" está " "seleccionado." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Notificar a los usuarios por correo electrónico" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -13778,10 +13621,6 @@ msgstr "" "Si esta opción está seleccionada, los usuarios recibirán un correo " "electrónico de notificación." -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Inscribirse" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "Registrar/inscribir alumnos" @@ -14006,7 +13845,6 @@ msgstr "" "Puedes pulsar en cualquiera de las barras para ver una lista de los alumnos " "que abrieron esa subsección." -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "También puedes descargar esta información como un archivo CSV" @@ -14044,14 +13882,12 @@ msgstr "Descargar las secciones abiertas por los alumnos como CSV" msgid "Download Student Grades as a CSV" msgstr "Descargar las puntuaciones de los alumnos como CSV" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" "Esta es una lista incompleta, para ver todos los alumnos debe descargarse en" " formato csv." -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Enviar e-mail" @@ -14064,12 +13900,10 @@ msgstr "Enviar a:" msgid "Myself" msgstr "Yo mismo" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Administradores e instructores" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Todos (Alumnos, administradores y profesores)" @@ -14166,7 +14000,6 @@ msgstr "" msgid "Show Email Task History" msgstr "Mostrar histórico de tareas de envío de e-mails" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "Establecer el precio del modo del curso" @@ -14208,19 +14041,16 @@ msgstr "Página de progreso del alumno" msgid "Student-specific grade adjustment" msgstr "Ajustes de calificaciones específicas del alumno" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "Indica aquí un ejercicio del curso con su ruta completa:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Ruta del ejercicio" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -14617,7 +14447,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "Detalles de facturación" @@ -14641,7 +14470,6 @@ msgstr "Organización de la compra" msgid "Purchase order number (if any)" msgstr "Número de solicitud de la compra (si lo hubiera)" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "correo@ejemplo.com" @@ -14844,15 +14672,10 @@ msgid " {course_name} " msgstr "{course_name}" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "Precio por alumno:" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -14968,7 +14791,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -14996,7 +14818,6 @@ msgstr "se ha aplicado el código" msgid "TOTAL:" msgstr "TOTAL:" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " @@ -15005,12 +14826,10 @@ msgstr "" "Después de que se haya completado esta compra, se generará una factura con " "detalles relativos de la facturación y códigos de registro para alumnos." -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "Después de que se haya completado esta compra," -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "estarás inscrito/a en este curso." @@ -15070,12 +14889,10 @@ msgstr "" "Esta página se ha dejado intencionadamente en blanco. No se usa por edx.org " "pero se ha dejado aquí para posibles usos en instalaciones de Open edX." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "Bitácora" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "Haz un donativo" @@ -15088,14 +14905,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Dossier de prensa" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "En la prensa" @@ -15414,7 +15228,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -15424,19 +15237,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Tomar nuevamente" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "¡Se ve bien!" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Consejos para tomar una foto exitosamente" @@ -15459,7 +15269,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Una vez estés en posición, usa el botón de la cámara" @@ -15470,19 +15279,16 @@ msgstr "para capturar tu imagen." #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Usa el botón de verificación" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "una vez que estés satisfecho con la fotografía" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Preguntas comunes" @@ -15502,7 +15308,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "¿Qué harán con esta fotografía?" @@ -15585,7 +15390,6 @@ msgstr "Completa tus otras re-verificaciones" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Volver al punto donde lo dejaste" @@ -15601,15 +15405,10 @@ msgstr "Estás en el track de ID Verificado" msgid "You currently need to re-verify for the following courses:" msgstr "Debes volver a verificar tu identidad en los siguientes cursos:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "Re-verificar antes de {date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "Re-verifica para {course_number}" @@ -15875,7 +15674,6 @@ msgstr "" "Por favor, revisa las fotos y verifica que cumplen con los requisitos " "listados a continuación." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "Las fotos deben cumplir con los siguientes requisitos:" @@ -15888,7 +15686,6 @@ msgstr "Estar bien iluminadas" msgid "Show your whole face" msgstr "Mostrar tu rostro completo" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "La foto de tu documento debe coincidir con la foto de tu rostro." @@ -15953,7 +15750,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Volver al panel de control" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "Fallo en la re-verificación" @@ -15972,9 +15768,6 @@ msgstr "" "Por favor, contacta con el soporte si crees que este mensaje se trata de un " "error" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(activos){span_end}" @@ -16091,8 +15884,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "Contacta para apoyo de {platform_name}" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Archivos y subidas" @@ -16112,8 +15904,7 @@ msgstr "Contenido" msgid "Page Actions" msgstr "Acciones de página" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Subir nuevo archivo" @@ -16201,7 +15992,7 @@ msgstr "Tu archivo ha sido borrado." msgid "close alert" msgstr "Cerrar alerta" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Listas de comprobación del curso" @@ -16242,7 +16033,6 @@ msgid "{studio_name} checklists" msgstr "Listas de verificación de {studio_name}" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Duplicar" @@ -16255,7 +16045,7 @@ msgid "Delete this component" msgstr "Borrar este componente" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "Arrastra para reordenar" @@ -16395,7 +16185,7 @@ msgstr "" "mismo que el original)" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Organización" @@ -16405,7 +16195,6 @@ msgstr "Organización" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "Ej. OrganizationX o UniversityX" @@ -16417,8 +16206,6 @@ msgstr "" "Nombre de la organización patrocinadora del curso nuevo. (A menudo este " "nombre es el mismo que el original)" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "Nota: No se permiten espacios ni caracteres especiales." @@ -16505,7 +16292,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "Aprende más sobre Repetición de cursos" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Actualizaciones del curso" @@ -16524,7 +16311,6 @@ msgstr "" "anunciar cambios en la planificación y responder a preguntas de los alumnos." " Puedes añadir o editar actualizaciones en formato HTML." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Estructura del curso" @@ -16586,7 +16372,7 @@ msgstr "Ver en vivo" msgid "Course Start Date:" msgstr "Fecha de comienzo del curso" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "Editar fecha de inicio" @@ -16658,8 +16444,8 @@ msgstr "Aprende más sobre la estructura del curso" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Páginas" @@ -16681,11 +16467,11 @@ msgstr "" msgid "Show this page" msgstr "Mostrar esta página" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Mostrar/ocultar página" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "Esta página no puede ser reordenada" @@ -16762,7 +16548,6 @@ msgstr "" "personalizadas." #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "cerrar" @@ -16816,7 +16601,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Volver al panel de control" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Exportar curso" @@ -16968,8 +16753,7 @@ msgstr "Aprende más sobre cómo exportar un curso" msgid "Export Course to Git" msgstr "Exportar curso a Git" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Exportar a Git" @@ -17018,13 +16802,11 @@ msgstr "Tu curso:" msgid "Course git url:" msgstr "URL del curso en GIT:" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "Grupos de contenido" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "Configuraciones de Grupo para experimentos" @@ -17053,10 +16835,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "Aprender más" @@ -17111,8 +16898,8 @@ msgid "Course Team" msgstr "Equipo del curso" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Configuración avanzada" @@ -17136,7 +16923,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "Las muchas funcionalidades de {studio_name}" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "{studio_name} te ayuda a mantener tus cursos organizados" @@ -17191,7 +16978,6 @@ msgstr "" "Construye y libera las secciones para tus alumnos de forma " "progresiva. No tienes que tener todo terminado de una sola vez." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "Aprender es más que solo clases" @@ -17242,7 +17028,7 @@ msgstr "" "Es más que elección múltiple. Studio mantiene más de una docena de tipos de " "ejercicios para retar a tus alumnos." -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -17364,7 +17150,7 @@ msgstr "" "Los alumnosno podrán acceder a este componente. Reedita tu componente para " "corregir el error." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Importar curso" @@ -17526,8 +17312,7 @@ msgstr "" "datos de los alumnos asociados con esos ejercicios se perderán. Estos datos " "incluyen las puntuaciones de los alumnos en esos ejercicios." -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "Página principal de {studio_name} " @@ -17543,7 +17328,7 @@ msgstr "Nueva biblioteca" msgid "Email staff to create course" msgstr "Envíanos un correo electrónico para solicitar la creación del curso" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "Por favor, corrige los campos resaltados a continuación." @@ -17589,7 +17374,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "Nombre único que identifica tu curso dentro de tu organización." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -17601,7 +17386,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "Trimestre en el que impartirá tu curso. " -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Crear" @@ -17632,7 +17417,7 @@ msgstr "Nombre público mostrado para tu biblioteca" msgid "The public organization name for your library." msgstr "Nombre público de la organización de tu biblioteca" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "Esto no puede ser cambiado" @@ -17664,7 +17449,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "Se están procesando los cursos" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "Impartición del curso:" @@ -17718,7 +17503,7 @@ msgstr "" "Por favor, ponte en contacto con el creador o el administrador del curso " "específico que estás ayudando a crear." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "Crear tu primer curso" @@ -17745,7 +17530,7 @@ msgstr "" "evaluará tu solicitud y te proporcionará retroalimentación en 24 horas " "durante la semana laboral." -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "Estado de tu solicitud de creador del curso:" @@ -17753,7 +17538,7 @@ msgstr "Estado de tu solicitud de creador del curso:" msgid "Request the Ability to Create Courses" msgstr "Solicita el permiso para crear cursos" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "Estado de tu solicitud de creador del curso" @@ -17770,7 +17555,7 @@ msgstr "" "para crear cursos son concedidos por {platform_name}. Nuestro equipo ha " "terminado de evaluar tu solicitud." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "Tu solicitud de creador del curso es:" @@ -17836,7 +17621,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "Empezar con {studio_name}" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "Utiliza nuestra herramienta de feedback, Tender, para solicitar ayuda" @@ -17844,7 +17629,7 @@ msgstr "Utiliza nuestra herramienta de feedback, Tender, para solicitar ayuda" msgid "Request help with {studio_name}" msgstr "Solicitar ayuda con {studio_name}" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "¿Puedo crear cursos en {studio_name}?" @@ -17917,7 +17702,7 @@ msgstr "Contenido de la biblioteca" msgid "Add Component" msgstr "Añadir componente" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "Identificador de la biblioteca" @@ -17986,7 +17771,7 @@ msgstr "Aprende más acerca del contenido de las bibliotecas" msgid "Sign In" msgstr "Iniciar sesión" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "Regístrate en {studio_name}" @@ -18045,13 +17830,11 @@ msgstr "" msgid "Add User" msgstr "Agregar usuario" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "Rol actual:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "¡Usted!" @@ -18338,7 +18121,6 @@ msgstr "Información básica" msgid "The nuts and bolts of your course" msgstr "Herramientas para la construcción de tu curso" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "Este campo está deshabilitado; no puedes modificar su valor." @@ -18400,8 +18182,7 @@ msgstr "Primer día del curso" msgid "Course Start Time" msgstr "Hora de inicio del curso" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "(UTC)" @@ -18488,7 +18269,6 @@ msgstr "" "Introducción, requisitos previos, preguntas frecuentes que se usan en los %s" " (en formato HTML)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Imagen del curso" @@ -18753,7 +18533,6 @@ msgstr "" "laboratorios, sencillas cuestiones, y especificar cuánto puntos obtendrá el " "alumno por cada tipo de ejercicio." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "Expandir o colapsar" @@ -18812,8 +18591,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "Aprende más sobre libros de texto" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "Cargas de vídeos" @@ -19036,7 +18814,7 @@ msgstr "Contáctanos" msgid "Current Course:" msgstr "Curso activo:" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "Navegando por {course_name}" @@ -19076,7 +18854,7 @@ msgstr "Biblioteca" msgid "Help & Account Navigation" msgstr "Ayuda y navegación de la cuenta" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "Ayuda contextual en línea" @@ -19096,12 +18874,10 @@ msgstr "No has iniciado sesión" msgid "Launch Latex Source Compiler" msgstr "Lanzar el compilador de código Latex" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "Encabezado 1" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "Explicación" @@ -19126,7 +18902,7 @@ msgstr "¿Buscas ayuda con {studio_name}?" msgid "Hide {studio_name} Help" msgstr "Oculta la ayuda de {studio_name}" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "Documentación de {studio_name}" @@ -19147,7 +18923,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "PDF 'Construir y ejecutar un curso en {platform_name}'" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "Soporte al autor de {studio_name}" @@ -19199,11 +18975,11 @@ msgstr "" "utilizar características más complejas como añadir plugins, metadatos, " "artículos relacionados, etcétera" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Contenidos" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Resumen" @@ -19590,11 +19366,11 @@ msgstr "revisiones del adjunto" msgid "%s was successfully added." msgstr "%s fue agregado con éxito." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Tu archivo no ha sido grabado: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.mo b/conf/locale/es_ES/LC_MESSAGES/djangojs.mo index 5ecb1bd091..caa8e68af9 100644 Binary files a/conf/locale/es_ES/LC_MESSAGES/djangojs.mo and b/conf/locale/es_ES/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.po b/conf/locale/es_ES/LC_MESSAGES/djangojs.po index 6f74d4eaf3..55a5c3dc8a 100644 --- a/conf/locale/es_ES/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_ES/LC_MESSAGES/djangojs.po @@ -21,6 +21,7 @@ # luistrenado , 2014 # Mariangeles Fernandez , 2015 # mercefan , 2014 +# Miguel Ángel Candel , 2015 # Miguel Angel Cordova , 2014 # Rosa Sanchez Hernandez , 2014 # sandra bonillo , 2015 @@ -90,8 +91,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -104,7 +105,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -144,8 +144,6 @@ msgstr "Este enlace se abrirá en una nueva ventana/pestaña del navegador " #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Desconocido" @@ -153,17 +151,14 @@ msgstr "Desconocido" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Borrar" @@ -256,7 +251,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s punto posible)" msgstr[1] "(%(num_points)s puntos posibles)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Respuesta:" @@ -264,7 +258,6 @@ msgstr "Respuesta:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Ocultar respuesta" @@ -285,7 +278,6 @@ msgstr "Respuesta oculta" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "Sin responder" @@ -304,7 +296,6 @@ msgstr "Debes elegir una calificación antes de enviar." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Tu puntuación no alcanza el nivel para moverte al siguiente paso." @@ -380,11 +371,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Mostrar pregunta." -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Ocultar pregunta" @@ -392,7 +381,6 @@ msgstr "Ocultar pregunta" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Párrafo" @@ -403,21 +391,18 @@ msgstr "Preformateado" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Encabezado 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Encabezado 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Encabezado 3" @@ -1290,7 +1275,6 @@ msgstr "Quitar enlace" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Reemplazar todo" @@ -1304,7 +1288,6 @@ msgstr "Reemplazar por" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1656,18 +1639,14 @@ msgstr "" "Pincha De acuerdo para enviar tu dirección de correo electrónico a una aplicación de 3os.\n" "Pincha Cancelar para regresar a esta página sin enviar tu información." -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "incorrecto" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "correcto" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1787,7 +1766,6 @@ msgstr "HD activado" msgid "HD off" msgstr "HD desactivado" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Posición del vídeo" @@ -1834,7 +1812,6 @@ msgstr "Actualizando con el último contenido de la biblioteca." msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Ocultar debate" @@ -1844,13 +1821,9 @@ msgid "Show Discussion" msgstr "Mostrar debate" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1888,8 +1861,6 @@ msgstr "" "favor." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2226,12 +2197,10 @@ msgstr "" "Se han eliminado todos los marcadores. Para revertirlo, desmarcar la " "casilla." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Ya has denunciado este comentario." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Denunciar comentario como inapropiado u ofensivo." @@ -2272,7 +2241,6 @@ msgstr "Fecha de publicación" msgid "More" msgstr "Más" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Mis Notas" @@ -2281,32 +2249,26 @@ msgstr "Mis Notas" msgid "Instructor" msgstr "Profesor" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Público" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Buscar" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Usuarios" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Etiquetas" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Anotación" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2411,7 +2373,6 @@ msgstr "Nombre de usuario" msgid "Email" msgstr "Correo electrónico" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Revocar acceso" @@ -2424,7 +2385,6 @@ msgstr "Introduce nombre de usuario o correo electrónico" msgid "Please enter a username or email." msgstr "Por favor, introduce un nombre de usuario o correo electrónico." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Error al cambiar los permisos de usuario." @@ -2641,7 +2601,6 @@ msgstr "" msgid "Error sending email." msgstr "Error al enviar el e-mail." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "No hay historial de e-mails para este curso." @@ -2657,10 +2616,6 @@ msgid "There was an error obtaining email content history for this course." msgstr "" "Se ha producido un error al obtener el historial de e-mails para este curso." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2674,12 +2629,6 @@ msgstr "" "Error al obtener la URL de progreso del alumno'<%= student_id %>'. Verifica " "que el identificador del alumno está bien escrito." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Por favor, introduce una localización para el problema." @@ -2969,7 +2918,6 @@ msgstr "El sistema entró en un estado inválido: <%= state %>" msgid "System got into invalid state for submission: " msgstr "El sistema entró en un estado inválido por el envío:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Ocultar)" @@ -3063,7 +3011,7 @@ msgstr "introduce aquí la descripción de la imagen" msgid "enter link description here" msgstr "introduce aquí la descripción del enlace" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "introduce el código aquí" @@ -3136,6 +3084,10 @@ msgstr "" "enlace en el correo para confirmar tu cambio de dirección de correo " "electrónico." +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3159,16 +3111,16 @@ msgid "Hide notes" msgstr "Ocultar notas" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "Mostrando notas" +msgid "Notes visible" +msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "Mostrar notas" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "Ocultando notas" +msgid "Notes hidden" +msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3346,6 +3298,14 @@ msgstr "No hemos podido rellenar la lista de opciones de idioma." msgid "Saved" msgstr "Guardado" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "Se ha producido un error, por favor inténtalo de nuevo" @@ -3396,18 +3356,6 @@ msgid "Double-check that your webcam is connected and working to continue." msgstr "" "Vuelve a comprobar que tu cámara está conectada y operativa para continuar." -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "Flash no detectado" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "Parece que no tienes Flash instalado." - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "%(a_start)s Instala Flash %(a_end)s para continuar tu inscripción." - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "Tu fichero '{file}' se ha subido con éxito. " @@ -3418,7 +3366,6 @@ msgstr "" " La subida de tu fichero '{file}' ha" " fallado." -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3459,7 +3406,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio tiene problemas para guardar tu trabajo" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3470,7 +3417,6 @@ msgstr "Studio tiene problemas para guardar tu trabajo" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Guardando" @@ -3579,8 +3525,8 @@ msgstr "Ha habido un error importando el nuevo curso a nuestra base de datos." msgid "Your import has failed." msgstr "Tu importación ha fallado." -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "Escoge un nuevo archivo" @@ -3809,7 +3755,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "El período de gracia se ha de expresar en un formato HH:MM" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3877,8 +3822,37 @@ msgstr "Subir nuevo archivo" msgid "Load Another File" msgstr "Cargar otro fichero" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "Sin usar" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "Usado en %(count)s unidad" +msgstr[1] "Usado en %(count)s unidades" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "Estructura del curso" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "Grupo de contenido" @@ -3919,18 +3893,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "Contiene %(count)s grupo" msgstr[1] "Contiene %(count)s grupos" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "Sin usar" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "Usado en %(count)s unidad" -msgstr[1] "Usado en %(count)s unidades" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3941,11 +3903,6 @@ msgstr "" "Esta configuración de grupos no está en uso. Comienza añadiendo contenido " "experimental a cualquier unidad a través de %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "Estructura del curso" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -4024,8 +3981,7 @@ msgstr "Fecha añadida" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "Mostrando %(current_item_range)s de %(total_items_count)s," @@ -4135,7 +4091,6 @@ msgstr "¿Publicar todos los cambios no publicados para %(item)s?" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "Publicar" @@ -4174,7 +4129,6 @@ msgstr "Duplicando" msgid "Publishing" msgstr "Publicando" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4204,7 +4158,6 @@ msgstr "Ocultando explícitamente a los Alumnos" msgid "Inheriting Student Visibility" msgstr "Heredando la visibilidad de los alumnos" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Haciendo visible a los alumnos" @@ -4330,14 +4283,9 @@ msgstr "" msgid "Upload translation" msgstr "Subir traducción." -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "gettext(" @@ -4447,7 +4395,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "¿Qué significa esto?" @@ -4620,7 +4567,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "No pudimos iniciar tu sesión." -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4682,6 +4628,10 @@ msgstr "Crea una cuenta empleando" msgid "or create a new one here" msgstr "o crea ahora una nueva aquí" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "Crea tu cuenta" @@ -4879,6 +4829,14 @@ msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" "Una vez situado, usa el botón de cámara %(icon)s para fotografiar tu DNI" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "Gracias por volver para confirmar tu ID en: %(courseName)s" @@ -5185,7 +5143,6 @@ msgstr "Obsoleto" msgid "List of uploaded files and assets in this course" msgstr "Lista de archivos y recursos cargados en este curso" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -5255,6 +5212,20 @@ msgstr "" "Cuidado: La última versión publicada de esta unidad es en directo. " "Publicando los cambios cambiarás la experiencia de alumno." +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "Identificación" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5265,10 +5236,18 @@ msgstr "mensaje.error" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "Este es el nombre del grupo" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5294,12 +5273,10 @@ msgstr "Cambios al contenido no publicados que serán comunicados en el futuro" msgid "Display Name" msgstr "Nombre para mostrar" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "Configura" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "Arrastra para reordenar" @@ -5401,7 +5378,6 @@ msgstr "Fecha límite:" msgid "Due Time in UTC:" msgstr "Hora límite en UTC:" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "Borrar la fecha límite calificada " @@ -5474,10 +5450,6 @@ msgstr "Calificaciones" msgid "Grade as:" msgstr "Calificar como:" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "Identificación" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5615,7 +5587,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "mensaje" @@ -5694,7 +5665,6 @@ msgstr "Fecha de la comunicación" msgid "Release Time in UTC:" msgstr "Hora en UTC de la comunicación:" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "Borrar fecha/hora de la comunicación" @@ -5763,7 +5733,6 @@ msgstr "" "Por favor, comprueba los siguientes comentarios de validación y reflléjalos " "en tus parámetros del curso:" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "Edita el nombre" @@ -5895,15 +5864,9 @@ msgstr "" "transcripción, sube un nuevo fichero .srt" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Subir nueva transcripción" @@ -5913,11 +5876,8 @@ msgstr "Subir nueva transcripción" msgid "Upload New .srt Transcript" msgstr "Subir nuevo fichero .srt" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Descargar la transcripción para edición" @@ -5936,7 +5896,6 @@ msgstr "" "encontrado una transcripción en YouTube. Puedes importar la transcripción de" " YouTube o cargar tu propio archivo .srt" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "Importar los subtítulos de YouTube" @@ -5964,8 +5923,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "¿Quieres reemplazar los subtítulos de edX con los de YouTube?" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "Sí. reemplazar la transcripción edX con la de YouTube" @@ -5999,8 +5956,6 @@ msgstr "" "sincronizada. ¿Quieres usar la transcripción sincronizada actual o subir un " "fichero de transcripción .srt nuevo?" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "Usar transcripción actual" diff --git a/conf/locale/es_MX/LC_MESSAGES/django.mo b/conf/locale/es_MX/LC_MESSAGES/django.mo index dc81781a40..65e2e46bba 100644 Binary files a/conf/locale/es_MX/LC_MESSAGES/django.mo and b/conf/locale/es_MX/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_MX/LC_MESSAGES/django.po b/conf/locale/es_MX/LC_MESSAGES/django.po index 17cfc158f2..d3dd113224 100644 --- a/conf/locale/es_MX/LC_MESSAGES/django.po +++ b/conf/locale/es_MX/LC_MESSAGES/django.po @@ -6,6 +6,7 @@ # Translators: # addictivo , 2014 # Gerardo Milan Ortega , 2014 +# Laura A. D.- M , 2015 # Etna Pretelín Ricárdez, 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -43,6 +44,7 @@ # Translators: # Alexm7 , 2014 # Gerardo Milan Ortega , 2014 +# Laura A. D.- M , 2015 # Marco Antonio Mora Huizar , 2014 # Marco Morales, 2014 # Etna Pretelín Ricárdez, 2014 @@ -51,9 +53,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" -"PO-Revision-Date: 2015-02-13 00:40+0000\n" -"Last-Translator: Marco Antonio Mora Huizar \n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" +"PO-Revision-Date: 2015-02-20 18:39+0000\n" +"Last-Translator: Laura A. D.- M \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +84,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -90,7 +92,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -102,7 +103,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -129,15 +129,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -231,6 +227,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -251,7 +323,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -308,6 +380,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -418,102 +497,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -574,7 +557,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1008,7 +991,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1021,7 +1004,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1060,7 +1043,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1068,7 +1051,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1107,13 +1090,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1145,17 +1126,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1198,7 +1177,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1354,7 +1332,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1386,7 +1363,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1438,7 +1414,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1467,7 +1442,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1608,8 +1582,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2126,12 +2098,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2250,9 +2216,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2490,7 +2453,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2566,8 +2528,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3146,7 +3106,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3398,7 +3358,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3541,7 +3500,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3589,7 +3547,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3627,7 +3584,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3924,19 +3880,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4044,6 +3996,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4092,7 +4060,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4152,7 +4119,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4217,12 +4184,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4285,9 +4251,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4321,7 +4286,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4355,22 +4320,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4379,7 +4332,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4480,12 +4432,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4599,18 +4548,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4641,7 +4586,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4753,7 +4697,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4820,8 +4763,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4875,7 +4818,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4934,7 +4876,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5183,7 +5124,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5233,7 +5173,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5323,8 +5263,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5420,7 +5359,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5450,14 +5388,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5550,7 +5485,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5587,7 +5522,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5717,7 +5651,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6064,7 +5997,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6170,7 +6102,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6352,7 +6283,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6405,12 +6335,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6430,10 +6357,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6470,7 +6394,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6482,11 +6406,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6508,7 +6432,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6736,12 +6660,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6751,21 +6672,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6843,8 +6756,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6856,12 +6767,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6871,11 +6780,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6987,7 +6894,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7017,7 +6923,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7233,8 +7143,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7246,13 +7155,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7272,7 +7176,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7281,13 +7185,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7302,10 +7204,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7315,7 +7215,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7347,14 +7247,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7368,7 +7267,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7395,13 +7294,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7422,7 +7319,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7505,7 +7401,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7549,7 +7445,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7557,7 +7453,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7591,7 +7487,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7642,15 +7538,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7714,7 +7601,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7751,7 +7638,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7794,13 +7681,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7822,31 +7707,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7863,7 +7748,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7879,7 +7763,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7906,7 +7789,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7966,8 +7849,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8104,7 +7985,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8285,7 +8166,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8306,17 +8187,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8336,13 +8215,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8360,7 +8237,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8425,7 +8302,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8436,7 +8312,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8557,11 +8432,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8612,12 +8487,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8626,15 +8501,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8735,7 +8610,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8791,7 +8666,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8869,6 +8743,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8883,6 +8769,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9020,7 +8911,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9036,7 +8927,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9375,8 +9265,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9434,12 +9322,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9493,6 +9379,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9569,7 +9466,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9605,11 +9502,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9617,7 +9514,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9671,7 +9567,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9702,7 +9597,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9716,7 +9610,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9751,7 +9644,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9796,7 +9688,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9887,7 +9778,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9974,7 +9864,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10040,7 +9940,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10049,21 +9948,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10082,11 +9966,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10095,11 +9993,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10120,7 +10013,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10130,7 +10022,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10189,7 +10080,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10243,44 +10133,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10296,7 +10175,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10338,7 +10216,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10536,9 +10413,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10550,7 +10425,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10571,7 +10445,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10736,7 +10609,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10755,7 +10627,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10868,7 +10739,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11592,8 +11462,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11653,12 +11521,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11796,7 +11662,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11944,7 +11809,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12009,7 +11873,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12039,24 +11902,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12124,7 +11979,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12238,7 +12092,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12251,7 +12104,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12263,12 +12115,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12290,22 +12140,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12487,7 +12331,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12522,12 +12365,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12540,12 +12381,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12626,7 +12465,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12665,19 +12503,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13019,7 +12854,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13041,7 +12875,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13226,15 +13059,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13341,7 +13169,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13367,19 +13194,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13434,12 +13258,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13452,14 +13274,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13731,7 +13550,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13739,19 +13557,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13772,7 +13587,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13783,19 +13597,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13813,7 +13624,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13886,7 +13696,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13902,15 +13711,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14134,7 +13938,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14147,7 +13950,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14203,7 +14005,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14218,9 +14019,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14321,8 +14119,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14342,8 +14139,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14413,7 +14209,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14448,7 +14244,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14461,7 +14256,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14584,7 +14379,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14594,7 +14389,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14604,8 +14398,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14680,7 +14472,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14695,7 +14487,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14750,7 +14541,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14809,8 +14600,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14829,11 +14620,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14897,7 +14688,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14939,7 +14729,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15067,8 +14857,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15112,13 +14901,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15141,10 +14928,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15193,8 +14985,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15216,7 +15008,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15261,7 +15053,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15303,7 +15094,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15404,7 +15195,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15535,8 +15326,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15552,7 +15342,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15591,7 +15381,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15601,7 +15391,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15632,7 +15422,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15662,7 +15452,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15707,7 +15497,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15728,7 +15518,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15736,7 +15526,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15748,7 +15538,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15800,7 +15590,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15808,7 +15598,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15868,7 +15658,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15922,7 +15712,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15975,13 +15765,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16220,7 +16008,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16279,8 +16066,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16363,7 +16149,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16589,7 +16374,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16641,8 +16425,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16822,7 +16605,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16862,7 +16645,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16882,12 +16665,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16912,7 +16693,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16928,7 +16709,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16975,11 +16756,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17333,11 +17114,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.mo b/conf/locale/es_MX/LC_MESSAGES/djangojs.mo index 8fd06c8f0a..6f84229172 100644 Binary files a/conf/locale/es_MX/LC_MESSAGES/djangojs.mo and b/conf/locale/es_MX/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.po b/conf/locale/es_MX/LC_MESSAGES/djangojs.po index 963508da15..b47f642268 100644 --- a/conf/locale/es_MX/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_MX/LC_MESSAGES/djangojs.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-13 03:21+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -87,8 +86,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -96,17 +93,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -199,7 +193,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -207,7 +200,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -228,7 +220,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -247,7 +238,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -311,11 +301,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -323,7 +311,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -334,21 +321,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1219,7 +1203,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1233,7 +1216,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1570,18 +1552,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1699,7 +1677,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1746,7 +1723,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1756,13 +1732,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1792,8 +1764,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2093,12 +2063,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2139,7 +2107,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2148,32 +2115,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2274,7 +2235,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2287,7 +2247,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2475,7 +2434,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2488,10 +2446,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2502,12 +2456,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2761,7 +2709,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2855,7 +2802,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2925,6 +2872,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2946,7 +2897,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2954,7 +2905,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3127,6 +3078,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3173,18 +3132,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3193,7 +3140,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3230,7 +3176,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3241,7 +3187,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3340,8 +3285,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3550,7 +3495,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3608,8 +3552,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3650,18 +3623,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3670,11 +3631,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3749,8 +3705,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3855,7 +3810,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3894,7 +3848,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3922,7 +3875,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4037,14 +3989,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4154,7 +4101,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4322,7 +4268,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4380,6 +4325,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4551,6 +4500,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4829,7 +4786,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4897,6 +4853,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4907,10 +4877,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4936,12 +4914,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5041,7 +5017,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5112,10 +5087,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5248,7 +5219,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5327,7 +5297,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5381,7 +5350,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5501,15 +5469,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5519,11 +5481,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5539,7 +5498,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5564,8 +5522,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5592,8 +5548,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/es_PE/LC_MESSAGES/django.mo b/conf/locale/es_PE/LC_MESSAGES/django.mo index b5260bcb46..84778682bc 100644 Binary files a/conf/locale/es_PE/LC_MESSAGES/django.mo and b/conf/locale/es_PE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_PE/LC_MESSAGES/django.po b/conf/locale/es_PE/LC_MESSAGES/django.po index 7a6b0b5d8e..96f11c9e5c 100644 --- a/conf/locale/es_PE/LC_MESSAGES/django.po +++ b/conf/locale/es_PE/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-03-11 21:33+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/edx-platform/language/es_PE/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.mo b/conf/locale/es_PE/LC_MESSAGES/djangojs.mo index 0a34c4c7e3..d4fdddfd11 100644 Binary files a/conf/locale/es_PE/LC_MESSAGES/djangojs.mo and b/conf/locale/es_PE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.po b/conf/locale/es_PE/LC_MESSAGES/djangojs.po index 8cab1e205a..a9d9853d5f 100644 --- a/conf/locale/es_PE/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_PE/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/edx-platform/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/et_EE/LC_MESSAGES/django.mo b/conf/locale/et_EE/LC_MESSAGES/django.mo index 80ded73582..a0b4093ed5 100644 Binary files a/conf/locale/et_EE/LC_MESSAGES/django.mo and b/conf/locale/et_EE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/et_EE/LC_MESSAGES/django.po b/conf/locale/et_EE/LC_MESSAGES/django.po index c001723679..a71432f992 100644 --- a/conf/locale/et_EE/LC_MESSAGES/django.po +++ b/conf/locale/et_EE/LC_MESSAGES/django.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-09-27 22:20+0000\n" "Last-Translator: Triple \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/edx-platform/language/et_EE/)\n" @@ -76,7 +76,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -84,7 +84,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -96,7 +95,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -123,15 +121,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -225,6 +219,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -245,7 +315,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -302,6 +372,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -412,102 +489,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -568,7 +549,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1002,7 +983,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1015,7 +996,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1054,7 +1035,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1062,7 +1043,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1101,13 +1082,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1139,17 +1118,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1192,7 +1169,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1348,7 +1324,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1380,7 +1355,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1432,7 +1406,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1461,7 +1434,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1602,8 +1574,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2120,12 +2090,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2244,9 +2208,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2484,7 +2445,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2560,8 +2520,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3140,7 +3098,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3392,7 +3350,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3535,7 +3492,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3583,7 +3539,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3621,7 +3576,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3918,19 +3872,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4038,6 +3988,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4086,7 +4052,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4146,7 +4111,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4211,12 +4176,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4279,9 +4243,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4315,7 +4278,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4349,22 +4312,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4373,7 +4324,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4474,12 +4424,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4593,18 +4540,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4635,7 +4578,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4747,7 +4689,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4814,8 +4755,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4869,7 +4810,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4928,7 +4868,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5177,7 +5116,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5227,7 +5165,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5317,8 +5255,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5414,7 +5351,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5444,14 +5380,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5544,7 +5477,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5581,7 +5514,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5711,7 +5643,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6058,7 +5989,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6164,7 +6094,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6346,7 +6275,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6399,12 +6327,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6424,10 +6349,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6464,7 +6386,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6476,11 +6398,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6502,7 +6424,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6730,12 +6652,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6745,21 +6664,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6837,8 +6748,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6850,12 +6759,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6865,11 +6772,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6981,7 +6886,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7011,7 +6915,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7227,8 +7135,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7240,13 +7147,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7266,7 +7168,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7275,13 +7177,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7296,10 +7196,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7309,7 +7207,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7341,14 +7239,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7362,7 +7259,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7389,13 +7286,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7416,7 +7311,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7499,7 +7393,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7543,7 +7437,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7551,7 +7445,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7585,7 +7479,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7636,15 +7530,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7708,7 +7593,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7745,7 +7630,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7788,13 +7673,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7816,31 +7699,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7857,7 +7740,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7873,7 +7755,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7900,7 +7781,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7960,8 +7841,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8098,7 +7977,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8279,7 +8158,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8300,17 +8179,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8330,13 +8207,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8354,7 +8229,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8419,7 +8294,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8430,7 +8304,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8551,11 +8424,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8606,12 +8479,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8620,15 +8493,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8729,7 +8602,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8785,7 +8658,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8863,6 +8735,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8877,6 +8761,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9014,7 +8903,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9030,7 +8919,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9369,8 +9257,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9428,12 +9314,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9487,6 +9371,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9563,7 +9458,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9599,11 +9494,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9611,7 +9506,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9665,7 +9559,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9696,7 +9589,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9710,7 +9602,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9745,7 +9636,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9790,7 +9680,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9881,7 +9770,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9968,7 +9856,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10034,7 +9932,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10043,21 +9940,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10076,11 +9958,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10089,11 +9985,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10114,7 +10005,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10124,7 +10014,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10183,7 +10072,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10237,44 +10125,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10290,7 +10167,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10332,7 +10208,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10530,9 +10405,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10544,7 +10417,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10565,7 +10437,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10730,7 +10601,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10749,7 +10619,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10862,7 +10731,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11586,8 +11454,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11647,12 +11513,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11790,7 +11654,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11938,7 +11801,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12003,7 +11865,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12033,24 +11894,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12118,7 +11971,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12232,7 +12084,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12245,7 +12096,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12257,12 +12107,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12284,22 +12132,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12481,7 +12323,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12516,12 +12357,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12534,12 +12373,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12620,7 +12457,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12659,19 +12495,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13013,7 +12846,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13035,7 +12867,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13220,15 +13051,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13335,7 +13161,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13361,19 +13186,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13428,12 +13250,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13446,14 +13266,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13725,7 +13542,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13733,19 +13549,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13766,7 +13579,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13777,19 +13589,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13807,7 +13616,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13880,7 +13688,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13896,15 +13703,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14128,7 +13930,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14141,7 +13942,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14197,7 +13997,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14212,9 +14011,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14315,8 +14111,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14336,8 +14131,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14407,7 +14201,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14442,7 +14236,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14455,7 +14248,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14578,7 +14371,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14588,7 +14381,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14598,8 +14390,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14674,7 +14464,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14689,7 +14479,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14744,7 +14533,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14803,8 +14592,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14823,11 +14612,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14891,7 +14680,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14933,7 +14721,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15061,8 +14849,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15106,13 +14893,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15135,10 +14920,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15187,8 +14977,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15210,7 +15000,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15255,7 +15045,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15297,7 +15086,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15398,7 +15187,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15529,8 +15318,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15546,7 +15334,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15585,7 +15373,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15595,7 +15383,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15626,7 +15414,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15656,7 +15444,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15701,7 +15489,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15722,7 +15510,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15730,7 +15518,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15742,7 +15530,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15794,7 +15582,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15802,7 +15590,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15862,7 +15650,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15916,7 +15704,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15969,13 +15757,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16214,7 +16000,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16273,8 +16058,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16357,7 +16141,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16583,7 +16366,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16635,8 +16417,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16816,7 +16597,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16856,7 +16637,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16876,12 +16657,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16906,7 +16685,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16922,7 +16701,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16969,11 +16748,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17327,11 +17106,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.mo b/conf/locale/et_EE/LC_MESSAGES/djangojs.mo index 98c2719a00..453c6084fa 100644 Binary files a/conf/locale/et_EE/LC_MESSAGES/djangojs.mo and b/conf/locale/et_EE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.po b/conf/locale/et_EE/LC_MESSAGES/djangojs.po index 3f0683b811..1edf41b9d2 100644 --- a/conf/locale/et_EE/LC_MESSAGES/djangojs.po +++ b/conf/locale/et_EE/LC_MESSAGES/djangojs.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/edx-platform/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -72,8 +71,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -81,17 +78,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -184,7 +178,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -192,7 +185,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -213,7 +205,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -232,7 +223,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -296,11 +286,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -308,7 +296,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -319,21 +306,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1204,7 +1188,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1218,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1555,18 +1537,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1684,7 +1662,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1731,7 +1708,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1741,13 +1717,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1777,8 +1749,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2078,12 +2048,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2124,7 +2092,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2133,32 +2100,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2259,7 +2220,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2272,7 +2232,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2460,7 +2419,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2473,10 +2431,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2487,12 +2441,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2746,7 +2694,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2840,7 +2787,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2910,6 +2857,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2931,7 +2882,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2939,7 +2890,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3112,6 +3063,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3158,18 +3117,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3178,7 +3125,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3215,7 +3161,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3226,7 +3172,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3325,8 +3270,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3535,7 +3480,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3593,8 +3537,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3635,18 +3608,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3655,11 +3616,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3734,8 +3690,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3840,7 +3795,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3879,7 +3833,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3907,7 +3860,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4022,14 +3974,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4139,7 +4086,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4307,7 +4253,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4365,6 +4310,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4536,6 +4485,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4814,7 +4771,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4882,6 +4838,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4892,10 +4862,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4921,12 +4899,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5026,7 +5002,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5097,10 +5072,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5233,7 +5204,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5312,7 +5282,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5366,7 +5335,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5486,15 +5454,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5504,11 +5466,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5524,7 +5483,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5549,8 +5507,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5577,8 +5533,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.mo b/conf/locale/eu_ES/LC_MESSAGES/django.mo index 41c6f1c075..4a4a67e3b8 100644 Binary files a/conf/locale/eu_ES/LC_MESSAGES/django.mo and b/conf/locale/eu_ES/LC_MESSAGES/django.mo differ diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.po b/conf/locale/eu_ES/LC_MESSAGES/django.po index b0d60653c8..b35d495e8f 100644 --- a/conf/locale/eu_ES/LC_MESSAGES/django.po +++ b/conf/locale/eu_ES/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-04-03 12:47+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo b/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo index 75d020f354..976201603c 100644 Binary files a/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo and b/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.po b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po index dd473eae6f..a58ce71a3b 100644 --- a/conf/locale/eu_ES/LC_MESSAGES/djangojs.po +++ b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/fa/LC_MESSAGES/django.mo b/conf/locale/fa/LC_MESSAGES/django.mo index 5ef099d5e4..c76e214c1f 100644 Binary files a/conf/locale/fa/LC_MESSAGES/django.mo and b/conf/locale/fa/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fa/LC_MESSAGES/django.po b/conf/locale/fa/LC_MESSAGES/django.po index fe40e7e54d..de64e86c91 100644 --- a/conf/locale/fa/LC_MESSAGES/django.po +++ b/conf/locale/fa/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: Ned Batchelder \n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" @@ -71,7 +71,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -79,7 +79,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -118,15 +116,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -220,6 +214,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -240,7 +310,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -297,6 +367,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -407,102 +484,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -994,7 +975,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1007,7 +988,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1046,7 +1027,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1054,7 +1035,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1093,13 +1074,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1131,17 +1110,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1184,7 +1161,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1340,7 +1316,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1372,7 +1347,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1424,7 +1398,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1453,7 +1426,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1594,8 +1566,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2112,12 +2082,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2236,9 +2200,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2476,7 +2437,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2552,8 +2512,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3130,7 +3088,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3382,7 +3340,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3525,7 +3482,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3573,7 +3529,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3611,7 +3566,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3908,19 +3862,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4027,6 +3977,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4075,7 +4041,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4135,7 +4100,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4200,12 +4165,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4268,9 +4232,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4304,7 +4267,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4338,22 +4301,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4362,7 +4313,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4463,12 +4413,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4582,18 +4529,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4624,7 +4567,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4734,7 +4676,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4801,8 +4742,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4856,7 +4797,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4915,7 +4855,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5164,7 +5103,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5214,7 +5152,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5304,8 +5242,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5401,7 +5338,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5431,14 +5367,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5531,7 +5464,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5568,7 +5501,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5698,7 +5630,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6045,7 +5976,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6151,7 +6081,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6333,7 +6262,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6386,12 +6314,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6411,10 +6336,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6451,7 +6373,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6463,11 +6385,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6489,7 +6411,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6717,12 +6639,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6732,21 +6651,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6824,8 +6735,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6837,12 +6746,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6852,11 +6759,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6968,7 +6873,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6998,7 +6902,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7214,8 +7122,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7227,13 +7134,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7253,7 +7155,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7262,13 +7164,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7283,10 +7183,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7296,7 +7194,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7328,14 +7226,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7349,7 +7246,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7376,13 +7273,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7403,7 +7298,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7486,7 +7380,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7530,7 +7424,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7538,7 +7432,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7572,7 +7466,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7623,15 +7517,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7695,7 +7580,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7732,7 +7617,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7775,13 +7660,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7803,31 +7686,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7844,7 +7727,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7860,7 +7742,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7887,7 +7768,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7947,8 +7828,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8084,7 +7963,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8265,7 +8144,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8286,17 +8165,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8316,13 +8193,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8340,7 +8215,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8405,7 +8280,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8416,7 +8290,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8537,11 +8410,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8592,12 +8465,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8606,15 +8479,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8715,7 +8588,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8771,7 +8644,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8849,6 +8721,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8863,6 +8747,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9000,7 +8889,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9016,7 +8905,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9353,8 +9241,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9412,12 +9298,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9471,6 +9355,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9547,7 +9442,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9583,11 +9478,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9595,7 +9490,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9649,7 +9543,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9680,7 +9573,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9694,7 +9586,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9729,7 +9620,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9774,7 +9664,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9865,7 +9754,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9952,7 +9840,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10018,7 +9916,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10027,21 +9924,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10060,11 +9942,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10073,11 +9969,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10098,7 +9989,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10108,7 +9998,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10166,7 +10055,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10220,44 +10108,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10273,7 +10150,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10315,7 +10191,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10513,9 +10388,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10527,7 +10400,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10548,7 +10420,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10713,7 +10584,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10732,7 +10602,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10843,7 +10712,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11567,8 +11435,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11628,12 +11494,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11771,7 +11635,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11919,7 +11782,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11984,7 +11846,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12014,24 +11875,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12099,7 +11952,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12213,7 +12065,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12226,7 +12077,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12238,12 +12088,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12265,22 +12113,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12462,7 +12304,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12497,12 +12338,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12515,12 +12354,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12601,7 +12438,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12640,19 +12476,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12994,7 +12827,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13016,7 +12848,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13200,15 +13031,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13315,7 +13141,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13341,19 +13166,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13408,12 +13230,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13426,14 +13246,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13705,7 +13522,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13713,19 +13529,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13746,7 +13559,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13757,19 +13569,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13787,7 +13596,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13860,7 +13668,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13876,15 +13683,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14108,7 +13910,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14121,7 +13922,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14177,7 +13977,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14192,9 +13991,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14295,8 +14091,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14316,8 +14111,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14387,7 +14181,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14422,7 +14216,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14435,7 +14228,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14558,7 +14351,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14568,7 +14361,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14578,8 +14370,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14654,7 +14444,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14669,7 +14459,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14724,7 +14513,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14783,8 +14572,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14803,11 +14592,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14871,7 +14660,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14913,7 +14701,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15041,8 +14829,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15086,13 +14873,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15115,10 +14900,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15167,8 +14957,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15190,7 +14980,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15235,7 +15025,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15277,7 +15066,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15378,7 +15167,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15509,8 +15298,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15526,7 +15314,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15565,7 +15353,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15575,7 +15363,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15606,7 +15394,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15636,7 +15424,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15681,7 +15469,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15702,7 +15490,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15710,7 +15498,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15722,7 +15510,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15774,7 +15562,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15782,7 +15570,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15842,7 +15630,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15896,7 +15684,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15949,13 +15737,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16194,7 +15980,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16253,8 +16038,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16337,7 +16121,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16563,7 +16346,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16615,8 +16397,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16796,7 +16577,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16836,7 +16617,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16856,12 +16637,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16886,7 +16665,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16902,7 +16681,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16949,11 +16728,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17307,11 +17086,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.mo b/conf/locale/fa/LC_MESSAGES/djangojs.mo index 24c0e37736..fd7144af0d 100644 Binary files a/conf/locale/fa/LC_MESSAGES/djangojs.mo and b/conf/locale/fa/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.po b/conf/locale/fa/LC_MESSAGES/djangojs.po index eaaf547c1d..b0ffd64b5a 100644 --- a/conf/locale/fa/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -190,7 +184,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -198,7 +191,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -219,7 +211,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -238,7 +229,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -302,11 +292,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -314,7 +302,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -325,21 +312,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1210,7 +1194,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1224,7 +1207,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1561,18 +1543,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1690,7 +1668,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1734,7 +1711,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1744,13 +1720,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1780,8 +1752,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2068,12 +2038,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2113,7 +2081,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2122,32 +2089,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2248,7 +2209,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2261,7 +2221,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2449,7 +2408,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2462,10 +2420,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2476,12 +2430,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2735,7 +2683,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2829,7 +2776,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2899,6 +2846,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2920,7 +2871,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2928,7 +2879,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3096,6 +3047,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3142,18 +3101,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3162,7 +3109,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3196,7 +3142,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3207,7 +3153,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3306,8 +3251,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3516,7 +3461,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3574,8 +3518,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3615,17 +3587,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3634,11 +3595,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3713,8 +3669,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3819,7 +3774,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3858,7 +3812,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3886,7 +3839,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4001,14 +3953,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4117,7 +4064,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4285,7 +4231,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4343,6 +4288,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4514,6 +4463,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4792,7 +4749,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4860,6 +4816,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4870,10 +4840,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4899,12 +4877,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5004,7 +4980,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5075,10 +5050,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5211,7 +5182,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5290,7 +5260,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5344,7 +5313,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5464,15 +5432,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5482,11 +5444,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5502,7 +5461,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5527,8 +5485,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5555,8 +5511,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.mo b/conf/locale/fa_IR/LC_MESSAGES/django.mo index cff4ec9665..94eb32f8a0 100644 Binary files a/conf/locale/fa_IR/LC_MESSAGES/django.mo and b/conf/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.po b/conf/locale/fa_IR/LC_MESSAGES/django.po index d8e8224e05..71104feb94 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/django.po +++ b/conf/locale/fa_IR/LC_MESSAGES/django.po @@ -73,7 +73,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-04 08:20+0000\n" "Last-Translator: Reza Amini \n" "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/edx-platform/language/fa_IR/)\n" @@ -104,7 +104,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -112,7 +112,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -124,7 +123,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -151,15 +149,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -253,6 +247,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -273,7 +343,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -330,6 +400,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -440,102 +517,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -594,7 +575,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1027,7 +1008,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1040,7 +1021,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1079,7 +1060,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1087,7 +1068,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1126,13 +1107,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1164,17 +1143,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1217,7 +1194,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1373,7 +1349,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1405,7 +1380,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1457,7 +1431,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1486,7 +1459,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1627,8 +1599,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2145,12 +2115,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2269,9 +2233,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2509,7 +2470,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2585,8 +2545,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3163,7 +3121,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3415,7 +3373,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3558,7 +3515,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3606,7 +3562,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3644,7 +3599,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3941,19 +3895,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4060,6 +4010,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4108,7 +4074,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4168,7 +4133,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4233,12 +4198,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4301,9 +4265,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4337,7 +4300,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4371,22 +4334,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4395,7 +4346,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4496,12 +4446,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4615,18 +4562,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4657,7 +4600,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4767,7 +4709,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4834,8 +4775,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4889,7 +4830,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4948,7 +4888,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5197,7 +5136,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5247,7 +5185,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5337,8 +5275,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5434,7 +5371,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5464,14 +5400,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5564,7 +5497,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5601,7 +5534,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5731,7 +5663,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6078,7 +6009,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6184,7 +6114,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6366,7 +6295,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6419,12 +6347,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6444,10 +6369,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6484,7 +6406,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6496,11 +6418,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6522,7 +6444,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6750,12 +6672,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6765,21 +6684,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6857,8 +6768,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6870,12 +6779,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6885,11 +6792,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7001,7 +6906,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7031,7 +6935,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7247,8 +7155,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7260,13 +7167,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7286,7 +7188,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7295,13 +7197,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7316,10 +7216,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7329,7 +7227,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7361,14 +7259,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7382,7 +7279,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7409,13 +7306,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7436,7 +7331,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7519,7 +7413,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7563,7 +7457,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7571,7 +7465,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7605,7 +7499,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7656,15 +7550,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7728,7 +7613,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7765,7 +7650,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7808,13 +7693,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7836,31 +7719,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7877,7 +7760,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7893,7 +7775,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7920,7 +7801,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7980,8 +7861,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8117,7 +7996,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8298,7 +8177,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8319,17 +8198,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8349,13 +8226,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8373,7 +8248,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8438,7 +8313,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8449,7 +8323,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8570,11 +8443,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8625,12 +8498,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8639,15 +8512,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8748,7 +8621,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8804,7 +8677,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8882,6 +8754,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8896,6 +8780,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9033,7 +8922,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9049,7 +8938,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9386,8 +9274,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9445,12 +9331,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9504,6 +9388,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9580,7 +9475,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9616,11 +9511,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9628,7 +9523,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9682,7 +9576,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9713,7 +9606,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9727,7 +9619,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9762,7 +9653,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9807,7 +9697,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9898,7 +9787,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9985,7 +9873,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10051,7 +9949,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10060,21 +9957,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10093,11 +9975,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10106,11 +10002,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10131,7 +10022,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10141,7 +10031,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10199,7 +10088,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10253,44 +10141,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10306,7 +10183,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10348,7 +10224,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10546,9 +10421,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10560,7 +10433,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10581,7 +10453,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10746,7 +10617,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10765,7 +10635,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10876,7 +10745,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11600,8 +11468,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11661,12 +11527,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11804,7 +11668,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11952,7 +11815,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12017,7 +11879,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12047,24 +11908,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12132,7 +11985,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12246,7 +12098,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12259,7 +12110,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12271,12 +12121,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12298,22 +12146,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12495,7 +12337,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12530,12 +12371,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12548,12 +12387,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12634,7 +12471,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12673,19 +12509,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13027,7 +12860,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13049,7 +12881,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13233,15 +13064,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13348,7 +13174,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13374,19 +13199,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13441,12 +13263,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13459,14 +13279,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13738,7 +13555,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13746,19 +13562,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13779,7 +13592,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13790,19 +13602,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13820,7 +13629,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13893,7 +13701,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13909,15 +13716,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14141,7 +13943,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14154,7 +13955,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14210,7 +14010,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14225,9 +14024,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14328,8 +14124,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14349,8 +14144,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14420,7 +14214,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14455,7 +14249,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14468,7 +14261,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14591,7 +14384,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14601,7 +14394,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14611,8 +14403,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14687,7 +14477,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14702,7 +14492,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14757,7 +14546,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14816,8 +14605,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14836,11 +14625,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14904,7 +14693,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14946,7 +14734,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15074,8 +14862,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15119,13 +14906,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15148,10 +14933,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15200,8 +14990,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15223,7 +15013,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15268,7 +15058,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15310,7 +15099,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15411,7 +15200,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15542,8 +15331,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15559,7 +15347,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15598,7 +15386,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15608,7 +15396,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15639,7 +15427,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15669,7 +15457,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15714,7 +15502,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15743,7 +15531,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15755,7 +15543,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15807,7 +15595,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15815,7 +15603,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15875,7 +15663,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15929,7 +15717,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15982,13 +15770,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16227,7 +16013,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16286,8 +16071,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16370,7 +16154,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16596,7 +16379,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16648,8 +16430,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16829,7 +16610,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16869,7 +16650,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16889,12 +16670,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16919,7 +16698,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16935,7 +16714,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16982,11 +16761,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17340,11 +17119,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo b/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo index 17d881a318..791f454bab 100644 Binary files a/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo and b/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po index 0fb41f49f3..c8014254b2 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po @@ -43,8 +43,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-16 15:57+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/edx-platform/language/fa_IR/)\n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -97,8 +96,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -106,17 +103,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -207,7 +201,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -215,7 +208,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -236,7 +228,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -255,7 +246,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -319,11 +309,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -331,7 +319,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -342,21 +329,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1227,7 +1211,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1241,7 +1224,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1578,18 +1560,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1707,7 +1685,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1751,7 +1728,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1761,13 +1737,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1797,8 +1769,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2085,12 +2055,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2130,7 +2098,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2139,32 +2106,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2265,7 +2226,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2278,7 +2238,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2466,7 +2425,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2479,10 +2437,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2493,12 +2447,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2752,7 +2700,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2846,7 +2793,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2916,6 +2863,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2937,7 +2888,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2945,7 +2896,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3113,6 +3064,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3159,18 +3118,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3179,7 +3126,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3213,7 +3159,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3224,7 +3170,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3323,8 +3268,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3533,7 +3478,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3591,8 +3535,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3632,17 +3604,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3651,11 +3612,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3730,8 +3686,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3836,7 +3791,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3875,7 +3829,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3903,7 +3856,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4018,14 +3970,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4134,7 +4081,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4302,7 +4248,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4360,6 +4305,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4531,6 +4480,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4809,7 +4766,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4877,6 +4833,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4887,10 +4857,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4916,12 +4894,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5021,7 +4997,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5092,10 +5067,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5228,7 +5199,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5307,7 +5277,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5361,7 +5330,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5481,15 +5449,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5499,11 +5461,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5519,7 +5478,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5544,8 +5502,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5572,8 +5528,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.mo b/conf/locale/fi_FI/LC_MESSAGES/django.mo index f995952280..1426e30aee 100644 Binary files a/conf/locale/fi_FI/LC_MESSAGES/django.mo and b/conf/locale/fi_FI/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.po b/conf/locale/fi_FI/LC_MESSAGES/django.po index 23e0f8b42f..e6a6f3055f 100644 --- a/conf/locale/fi_FI/LC_MESSAGES/django.po +++ b/conf/locale/fi_FI/LC_MESSAGES/django.po @@ -47,7 +47,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Henri Juvonen \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" @@ -78,7 +78,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -86,7 +86,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -98,7 +97,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -125,15 +123,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -227,6 +221,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -247,7 +317,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -304,6 +374,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -414,102 +491,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -570,7 +551,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1004,7 +985,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1017,7 +998,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1064,7 +1045,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1103,13 +1084,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1141,17 +1120,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1194,7 +1171,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1350,7 +1326,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1382,7 +1357,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1434,7 +1408,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1463,7 +1436,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1604,8 +1576,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2122,12 +2092,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2246,9 +2210,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2486,7 +2447,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2562,8 +2522,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3142,7 +3100,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3394,7 +3352,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3537,7 +3494,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3585,7 +3541,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3623,7 +3578,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3920,19 +3874,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4040,6 +3990,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4088,7 +4054,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4148,7 +4113,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4213,12 +4178,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4281,9 +4245,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4317,7 +4280,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4351,22 +4314,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4375,7 +4326,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4476,12 +4426,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4595,18 +4542,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4637,7 +4580,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4749,7 +4691,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4816,8 +4757,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4871,7 +4812,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4930,7 +4870,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5179,7 +5118,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5229,7 +5167,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5319,8 +5257,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5416,7 +5353,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5446,14 +5382,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5546,7 +5479,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5583,7 +5516,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5713,7 +5645,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6060,7 +5991,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6166,7 +6096,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6348,7 +6277,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6401,12 +6329,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6426,10 +6351,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6466,7 +6388,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6478,11 +6400,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6504,7 +6426,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6732,12 +6654,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6747,21 +6666,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6839,8 +6750,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6852,12 +6761,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6867,11 +6774,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6983,7 +6888,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7013,7 +6917,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7229,8 +7137,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7242,13 +7149,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7268,7 +7170,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7277,13 +7179,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7298,10 +7198,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7311,7 +7209,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7343,14 +7241,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7364,7 +7261,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7391,13 +7288,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7418,7 +7313,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7501,7 +7395,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7545,7 +7439,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7553,7 +7447,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7587,7 +7481,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7638,15 +7532,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7710,7 +7595,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7747,7 +7632,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7790,13 +7675,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7818,31 +7701,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7859,7 +7742,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7875,7 +7757,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7902,7 +7783,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7962,8 +7843,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8100,7 +7979,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8281,7 +8160,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8302,17 +8181,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8332,13 +8209,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8356,7 +8231,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8421,7 +8296,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8432,7 +8306,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8553,11 +8426,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8608,12 +8481,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8622,15 +8495,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8731,7 +8604,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8787,7 +8660,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8865,6 +8737,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8879,6 +8763,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9016,7 +8905,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9032,7 +8921,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9371,8 +9259,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9430,12 +9316,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9489,6 +9373,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9565,7 +9460,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9601,11 +9496,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9613,7 +9508,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9667,7 +9561,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9698,7 +9591,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9712,7 +9604,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9747,7 +9638,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9792,7 +9682,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9883,7 +9772,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9970,7 +9858,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10036,7 +9934,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10045,21 +9942,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10078,11 +9960,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10091,11 +9987,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10116,7 +10007,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10126,7 +10016,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10185,7 +10074,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10239,44 +10127,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10292,7 +10169,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10334,7 +10210,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10532,9 +10407,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10546,7 +10419,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10567,7 +10439,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10732,7 +10603,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10751,7 +10621,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10864,7 +10733,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11588,8 +11456,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11649,12 +11515,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11792,7 +11656,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11940,7 +11803,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12005,7 +11867,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12035,24 +11896,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12120,7 +11973,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12234,7 +12086,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12247,7 +12098,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12259,12 +12109,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12286,22 +12134,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12483,7 +12325,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12518,12 +12359,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12536,12 +12375,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12622,7 +12459,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12661,19 +12497,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13015,7 +12848,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13037,7 +12869,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13222,15 +13053,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13337,7 +13163,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13363,19 +13188,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13430,12 +13252,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13448,14 +13268,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13727,7 +13544,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13735,19 +13551,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13768,7 +13581,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13779,19 +13591,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13809,7 +13618,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13882,7 +13690,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13898,15 +13705,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14130,7 +13932,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14143,7 +13944,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14199,7 +13999,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14214,9 +14013,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14317,8 +14113,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14338,8 +14133,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14409,7 +14203,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14444,7 +14238,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14457,7 +14250,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14580,7 +14373,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14590,7 +14383,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14600,8 +14392,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14676,7 +14466,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14691,7 +14481,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14746,7 +14535,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14805,8 +14594,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14825,11 +14614,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14893,7 +14682,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14935,7 +14723,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15063,8 +14851,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15108,13 +14895,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15137,10 +14922,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15189,8 +14979,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15212,7 +15002,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15257,7 +15047,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15299,7 +15088,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15400,7 +15189,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15531,8 +15320,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15548,7 +15336,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15587,7 +15375,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15597,7 +15385,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15628,7 +15416,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15658,7 +15446,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15703,7 +15491,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15724,7 +15512,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15732,7 +15520,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15744,7 +15532,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15796,7 +15584,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15804,7 +15592,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15864,7 +15652,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15918,7 +15706,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15971,13 +15759,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16216,7 +16002,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16275,8 +16060,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16359,7 +16143,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16585,7 +16368,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16637,8 +16419,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16818,7 +16599,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16858,7 +16639,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16878,12 +16659,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16908,7 +16687,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16924,7 +16703,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16971,11 +16750,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17329,11 +17108,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo b/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo index 0f971c5e85..912ed713db 100644 Binary files a/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo and b/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fi_FI/LC_MESSAGES/djangojs.po b/conf/locale/fi_FI/LC_MESSAGES/djangojs.po index 94a24317ed..ae0b28ae88 100644 --- a/conf/locale/fi_FI/LC_MESSAGES/djangojs.po +++ b/conf/locale/fi_FI/LC_MESSAGES/djangojs.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -85,8 +84,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -94,17 +91,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -197,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -205,7 +198,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -226,7 +218,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -245,7 +236,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -309,11 +299,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -321,7 +309,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -332,21 +319,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1217,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1231,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1568,18 +1550,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1744,7 +1721,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1754,13 +1730,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1790,8 +1762,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2091,12 +2061,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2137,7 +2105,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2146,32 +2113,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2272,7 +2233,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2285,7 +2245,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2473,7 +2432,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2486,10 +2444,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2500,12 +2454,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2759,7 +2707,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2853,7 +2800,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2923,6 +2870,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2944,7 +2895,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2952,7 +2903,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3125,6 +3076,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3171,18 +3130,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3191,7 +3138,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3228,7 +3174,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3239,7 +3185,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3338,8 +3283,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3548,7 +3493,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3606,8 +3550,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3648,18 +3621,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3668,11 +3629,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3747,8 +3703,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3853,7 +3808,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3892,7 +3846,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3920,7 +3873,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4035,14 +3987,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4099,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4266,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4323,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4498,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4784,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4851,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4875,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4912,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5015,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5085,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5217,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5295,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5348,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5467,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5479,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5496,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5520,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5546,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/fil/LC_MESSAGES/django.mo b/conf/locale/fil/LC_MESSAGES/django.mo index 13208a0d72..2022a7320d 100644 Binary files a/conf/locale/fil/LC_MESSAGES/django.mo and b/conf/locale/fil/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fil/LC_MESSAGES/django.po b/conf/locale/fil/LC_MESSAGES/django.po index 934a72990c..8560626cd1 100644 --- a/conf/locale/fil/LC_MESSAGES/django.po +++ b/conf/locale/fil/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: Filipino (http://www.transifex.com/projects/p/edx-platform/language/fil/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/fil/LC_MESSAGES/djangojs.mo b/conf/locale/fil/LC_MESSAGES/djangojs.mo index 59fc7ec348..aa03c5731b 100644 Binary files a/conf/locale/fil/LC_MESSAGES/djangojs.mo and b/conf/locale/fil/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fil/LC_MESSAGES/djangojs.po b/conf/locale/fil/LC_MESSAGES/djangojs.po index 39caee194e..d3d3a39928 100644 --- a/conf/locale/fil/LC_MESSAGES/djangojs.po +++ b/conf/locale/fil/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Filipino (http://www.transifex.com/projects/p/edx-platform/language/fil/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/fr/LC_MESSAGES/django.mo b/conf/locale/fr/LC_MESSAGES/django.mo index ab33219e7a..f3554f1406 100644 Binary files a/conf/locale/fr/LC_MESSAGES/django.mo and b/conf/locale/fr/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fr/LC_MESSAGES/django.po b/conf/locale/fr/LC_MESSAGES/django.po index 0605346671..87ba8982a4 100644 --- a/conf/locale/fr/LC_MESSAGES/django.po +++ b/conf/locale/fr/LC_MESSAGES/django.po @@ -36,7 +36,7 @@ # PETIT Yannick , 2013 # Philippe Chiu , 2013-2014 # qcappart , 2014 -# rafcha , 2014 +# rafcha , 2014-2015 # Richard Moch , 2014 # Richard Moch , 2014 # Sarina Canelake , 2014 @@ -165,7 +165,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Xavier Antoviaque \n" "Language-Team: French (http://www.transifex.com/projects/p/edx-platform/language/fr/)\n" @@ -196,7 +196,7 @@ msgstr "Notes" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "Discussion" @@ -204,7 +204,6 @@ msgstr "Discussion" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Exercice" @@ -216,7 +215,6 @@ msgstr "Avancé" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -243,15 +241,11 @@ msgstr "Complet" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nom" @@ -350,6 +344,86 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Le nom d'utilisateur doit contenir au-moins deux caractères" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Une adresse e-mail valide est requise" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Le mot de passe est invalide" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Votre nom légal doit contenir au minimum deux caractères" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Le nom d'utilisateur ne peut être composé que des caractères A-Z et 0-9 et " +"ne peut pas contenir d'espaces." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Vous devez accepter les conditions d'utilisation." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Un niveau d'études est requis" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Votre genre est requis" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Votre année de naissance est requise" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Votre adresse email est requise" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Une description de vos objectifs est requise" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Une ville est requise" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Un pays est requis" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Pour vous inscrire, vous devez adopter la charte utilisateur." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Il vous manque un ou plusieurs champs obligatoires" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" +"Les champs \"Nom d'utilisateur\" et \"mot de passe\" ne peuvent pas être " +"identiques " + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Mot de passe : " + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -372,7 +446,7 @@ msgstr "Femme" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Autre" @@ -428,6 +502,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -559,106 +640,6 @@ msgstr "Un compte avec le même nom d'utilisateur '{username}' existe déjà." msgid "An account with the Email '{email}' already exists." msgstr "Un compte avec l'adresse e-mail '{email}' existe déjà." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Erreur (401 {field}). Contactez-nous par mail." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Pour vous inscrire, vous devez adopter la charte utilisateur." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Vous devez accepter les conditions d'utilisation." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Le nom d'utilisateur doit contenir au-moins deux caractères" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Une adresse e-mail valide est requise" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Votre nom légal doit contenir au minimum deux caractères" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Le mot de passe est invalide" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "L'acceptation des conditions de service est requise" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "L'acceptation du code d'honneur est requise" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Un niveau d'études est requis" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Votre genre est requis" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Votre année de naissance est requise" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Votre adresse email est requise" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Une description de vos objectifs est requise" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Une ville est requise" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Un pays est requis" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Il vous manque un ou plusieurs champs obligatoires" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "Le nom d'utilisateur ne peut pas contenir plus de {num} caractères" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "L'adresse électronique ne peut pas contenir plus de {num} caractères " - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Une adresse email valide est requise." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Le nom d'utilisateur ne peut être composé que des caractères A-Z et 0-9 et " -"ne peut pas contenir d'espaces." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Mot de passe : " - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" -"Les champs \"Nom d'utilisateur\" et \"mot de passe\" ne peuvent pas être " -"identiques " - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Impossible d'envoyer l'email d'activation." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -735,7 +716,7 @@ msgstr "" msgid "Name required" msgstr "Nom requis" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID invalide" @@ -1171,7 +1152,7 @@ msgstr "incorrect" msgid "incomplete" msgstr "incomplet" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "sans réponse" @@ -1184,7 +1165,7 @@ msgstr "en cours" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroupe : balise inattendue {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Réponse reçue." @@ -1232,7 +1213,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "Impossible de se connecter à la queue" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Aucune formule indiquée" @@ -1240,7 +1221,7 @@ msgstr "Aucune formule indiquée" msgid "Couldn't parse formula: {error_msg}" msgstr "Impossible d'analyser la formule : {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Erreur lors du rendu de l'aperçu" @@ -1280,13 +1261,11 @@ msgstr "L'exécution de code Javascript dangereux n'est pas autorisée." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "Question à choix multiple" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "Question à choix unique" @@ -1320,17 +1299,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "Liste déroulante" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Chiffres à saisir" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" "Il y a eu un problème avec la réponse de l'équipe d'encadrement à cette " @@ -1384,7 +1361,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "Texte à saisir" @@ -1557,7 +1533,6 @@ msgstr "données XML pour l'annotation" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1589,7 +1564,6 @@ msgstr "Annotation" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Ce nom apparaît dans le menu de navigation horizontal en haut de la page. " @@ -1652,7 +1626,6 @@ msgstr "" "Définit quand afficher la solution du problème. Une valeur par défaut peut " "être introduite dans les paramètres avancés. " -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Toujours" @@ -1681,7 +1654,6 @@ msgstr "Correct ou date d'échéance dépassée" msgid "Past Due" msgstr "Date de rendu dépassée" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Jamais" @@ -1838,8 +1810,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Ce problème est maintenant fermé; la date limite est passée." @@ -2440,12 +2410,6 @@ msgstr "" "Utilisez votre plan de cours pour construire vos premières section et sous-" "section." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Editer le plan du cours" @@ -2585,9 +2549,6 @@ msgstr "" "texte que les étudiants vont lire avant de décider de s'inscrire à votre " "cours. " -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Editez le calendrier et les détails du cours" @@ -2868,7 +2829,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "A propos" @@ -2948,8 +2908,6 @@ msgstr "" msgid "Text" msgstr "Texte" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3589,7 +3547,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Manuels" @@ -3888,7 +3846,6 @@ msgstr "" "pour signaler un problème, s'il vous plaît contactez " "moocsupport@mathworks.com" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -4038,7 +3995,6 @@ msgstr "Évaluation par l'enseignant" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Évaluation par IA (intelligence artificielle)" @@ -4093,7 +4049,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Erreur dans la réception du feedback de l'évaluateur." @@ -4132,7 +4087,6 @@ msgstr "En cours" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Terminé" @@ -4494,19 +4448,15 @@ msgstr "Recherche" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Nom d'utilisateur" @@ -4619,6 +4569,22 @@ msgstr "L'utilisateur {username} n'existe pas." msgid "User {username} has never accessed problem {location}" msgstr "L'utilisateur {username} n'a jamais accédé au problème {location}" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ERREUR: Aucune source vidéo n'a été trouvée!" @@ -4673,7 +4639,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "Adresse e-mail" @@ -4739,7 +4704,7 @@ msgstr "mot de passe fixé" msgid "All ok!" msgstr "Tout est ok!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Vous devez fournir un nom d'utilisateur" @@ -4808,12 +4773,11 @@ msgstr "Nombre total d'utilisateurs" msgid "Courses loaded in the modulestore" msgstr "Cours chargés dans le modulestore" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "nom d'utilisateur" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "e-mail" @@ -4885,9 +4849,8 @@ msgstr "Passé avec succès à la branche : {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "Le cours {course_name} a été chargé
Erreurs:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html #, fuzzy msgid "Course Name" msgstr "" @@ -4928,7 +4891,7 @@ msgstr "" msgid "Deleted" msgstr "Supprimé" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "course_id" @@ -4964,22 +4927,10 @@ msgstr "" "mportez le dépôt git spécifié et la branche facultative dans le dépôt de " "modules et éventuellement dans le répertoire spécifié." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Ré-ouvrir le fil de discussion" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Fermer le fil de discussion" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Le titre ne peut pas être vide" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Le corps ne peut pas être vide" @@ -4988,7 +4939,6 @@ msgstr "Le corps ne peut pas être vide" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Niveau de commentaire trop profond" @@ -5091,12 +5041,9 @@ msgstr "ID de l'utilisateur" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #, fuzzy msgid "Email" msgstr "" @@ -5231,18 +5178,14 @@ msgstr "" msgid "coupon id is None" msgstr "l'Id du bon de réduction est None" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "le bon de réduction avec l'identifiant ({coupon_id}) n'existe pas" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "le bon de réduction avec l'identifiant ({coupon_id}) est déjà inactif" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -5278,7 +5221,6 @@ msgstr "le bon de réduction avec le code ({code}) a été ajouté avec succès" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "l'id du bon de réduction est introuvable" @@ -5396,7 +5338,6 @@ msgstr "Veuillez saisir un nom pour le travail" msgid "Invalid assignment name '{name}'" msgstr "Nom de devoir '{name}' invalide " -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Email externe" @@ -5466,8 +5407,8 @@ msgstr "Identifiant" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5529,7 +5470,6 @@ msgid "No due date extension is set for that student and unit." msgstr "" "Aucune prolongation d'échéance n'est fixée pour cet étudiant et cette unité." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Extension de la date d'échéance" @@ -5588,7 +5528,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Aucune information de statut disponible" @@ -5876,7 +5815,6 @@ msgstr "" "Voir les soumissions qui ont été signalées par des étudiants comme étant " "inappropriées." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Nouvelles soumissions à noter" @@ -5930,7 +5868,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -6020,8 +5958,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -6115,7 +6052,6 @@ msgstr "Date du remboursement" msgid "Amount of Refund" msgstr "Montant du remboursement" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Frais de service (s'il y en a)" @@ -6145,12 +6081,10 @@ msgstr "Monnaie" msgid "Comments" msgstr "Commentaires" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Université" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Cours" @@ -6244,7 +6178,7 @@ msgstr "" msgid "Course added to cart." msgstr "Cours ajouté au panier." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -6282,7 +6216,6 @@ msgid "The payment processor did not return a required parameter: {0}" msgstr "" "Le processus de payement n'a pas retourné un paramètre obligatoire: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6443,7 +6376,6 @@ msgstr "" "Solde insuffisant dans le compte. Solution éventuelle: recommencez avec un " "autre mode de payement" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Raison inconnue" @@ -6862,7 +6794,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Prendre une photo" @@ -6969,7 +6900,6 @@ msgstr "Moment de complétion : " msgid "Refund Request Time:" msgstr "Heure de la demande de remboursement :" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Votre mot de passe a été réinitialisé" @@ -7178,7 +7108,6 @@ msgstr "Supprimer l'article" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Supprimer" @@ -7237,12 +7166,9 @@ msgstr "Aperçu" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7262,10 +7188,7 @@ msgstr "Aperçu du wiki" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "fenêtre ouverte" @@ -7306,7 +7229,7 @@ msgstr "Log automatique :" msgid "Change" msgstr "Modifier" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Fusionner la sélection avec la version en cours" @@ -7318,11 +7241,11 @@ msgstr "Changer pour la version sélectionnée" msgid "Wiki Revision Preview" msgstr "Prévisualisation des modifications du wiki" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Retour à l'historique" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Changer pour cette version" @@ -7347,7 +7270,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Après ceci, il est important de procéder à une relecture." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Créer une nouvelle version fusionnée" @@ -7591,30 +7514,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Mot de passe" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7679,8 +7592,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Code d'honneur" @@ -7689,23 +7600,19 @@ msgstr "Code d'honneur" msgid "Terms of Service and Honor Code" msgstr "Conditions générales du service et charte utilisateur" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Conditions générales du service" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Cours non valide mettez le à jour." @@ -7833,7 +7740,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7867,10 +7773,12 @@ msgid "must have at least one group" msgstr "doit avoir au moins un groupe" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" -"Cette configuration de groupe est déjà utilisée et ne peut pas être " -"supprimée." #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -8088,8 +7996,7 @@ msgstr "Page non trouvée" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -8101,13 +8008,8 @@ msgstr "Chargement en cours" msgid "close" msgstr "fermer" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -8127,7 +8029,7 @@ msgstr "Renvoyer" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Paramètres" @@ -8136,13 +8038,11 @@ msgstr "Paramètres" msgid "Error:" msgstr "Erreur :" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organisme :" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -8157,10 +8057,8 @@ msgstr "Cours" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "Email" @@ -8170,7 +8068,7 @@ msgstr "Email" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "exemple : jean.dupont@domaine.com" @@ -8202,14 +8100,13 @@ msgstr "exemple : Jean Dupont" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Nom d'utilisateur public" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "exemple : jdupont" @@ -8223,7 +8120,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Détails" @@ -8251,13 +8148,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Aide" @@ -8278,7 +8173,6 @@ msgstr "Désolé, une erreur s'est produite en tentant de vous inscrire." msgid "Now choose your course track:" msgstr "Maintenant choisissez votre parcours de cours:" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "Poursuivre Certificat Vérifié" @@ -8373,7 +8267,7 @@ msgstr "Nouveau" msgid "Dashboard" msgstr "Tableau de bord" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "éditer" @@ -8417,7 +8311,7 @@ msgstr "Lier" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Réinitialiser le mot de passe" @@ -8425,7 +8319,7 @@ msgstr "Réinitialiser le mot de passe" msgid "Current Courses" msgstr "Mes cours" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "Apparemment, vous êtes inscrit à aucun cours." @@ -8461,7 +8355,7 @@ msgstr "" "Un mail a été envoyé à {email}. Suivez le lien dans le mail pour changer " "votre mot de passe." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Changer l'adresse email" @@ -8516,15 +8410,6 @@ msgstr "Changer mon nom" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Se Désinscrire" @@ -8590,7 +8475,7 @@ msgstr "Étudiants rejetés :" msgid "Debug: " msgstr "Debogage :" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Échec de l'authentification externe" @@ -8627,7 +8512,7 @@ msgstr "Soumis" msgid "Puzzle Leaderboard" msgstr "Classement du puzzle" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "A propos d'edX" @@ -8679,13 +8564,11 @@ msgstr "Nouvelles" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contact" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -8707,31 +8590,31 @@ msgstr "Suivez-nous" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Meetup" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -8748,7 +8631,6 @@ msgid "Android app on Google Play" msgstr "Application Android sur Google Play" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Recrutement" @@ -8764,7 +8646,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "Site réalisé avec Open edX" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Réinitialisation du mot de passe" @@ -8795,7 +8676,7 @@ msgstr "Réinitialiser mon mot de passe" msgid "Email is incorrect." msgstr "L’adresse email est incorrecte." -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Aide" @@ -8867,8 +8748,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -9017,7 +8896,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Information utile" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Se connecter via OpenID" @@ -9219,7 +9098,7 @@ msgstr "Données brutes :" msgid "Accepted" msgstr "Accepté" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Erreur" @@ -9240,17 +9119,15 @@ msgstr "Confirmer" msgid "Reject" msgstr "Rejeter" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Comment ça marche" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Trouver un cours" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Écoles et Partenaires" @@ -9270,13 +9147,11 @@ msgstr "Se déconnecter" msgid "Shopping Cart" msgstr "Panier" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Inscription" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "Se connecter" @@ -9296,7 +9171,7 @@ msgstr "Navigation Globale" msgid "Schools" msgstr "Écoles" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Inscription" @@ -9368,7 +9243,6 @@ msgstr "" "inscription :" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9381,7 +9255,6 @@ msgid "Enter a public username:" msgstr "Entrez un nom d'utilisateur public :" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "Sera visible dans toute discussion ou forum où vous participerez" @@ -9521,11 +9394,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Complétez les champs suivants pour créer votre compte." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Nécessaire pour tous certificats que vous pourriez obtenir" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "ne pourra pas être modifié ultérieurement" @@ -9580,12 +9453,12 @@ msgstr "" "Vous avez réactivé les notifications par mail de {platform_name}. Cliquez " "{dashboard_link_start}ici{link_end} pour retourner à votre tableau de bord." -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Précédent" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Suivant" @@ -9594,15 +9467,15 @@ msgstr "Suivant" msgid "Sign Up for {platform_name}" msgstr "Inscrivez-vous sur {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "par exemple votrenom@domaine.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "par exemple : votrenom (affiché sur les forums)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "par exemple Votre Nom (pour les certificats)" @@ -9705,7 +9578,7 @@ msgstr "Supprimer l'état de l’étudiant" msgid "Rescore Student Submission" msgstr "Réévaluer la soumission d'un étudiant" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Champs Module" @@ -9761,7 +9634,6 @@ msgstr "Encadrement et Inscriptions" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Journaux Git" @@ -9842,6 +9714,18 @@ msgstr "Supprimer le cours du site" msgid "Platform Version" msgstr "Version de la plateforme" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9856,6 +9740,11 @@ msgstr "Date" msgid "Git Action" msgstr "Action Git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -10010,7 +9899,7 @@ msgstr "Retourner au début du sous-titrage." msgid "Download video" msgstr "Télécharger la vidéo" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Télécharger la transcription" @@ -10026,7 +9915,6 @@ msgstr "Vos mots :" msgid "Total number of words:" msgstr "Nombre total de mots :" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Afficher la calculatrice" @@ -10377,8 +10265,6 @@ msgstr "{chapter}, chapitre en cours" msgid "due {date}" msgstr "Echéance le {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10440,12 +10326,10 @@ msgstr "Présentation" msgid "Share with friends and family!" msgstr "Partager avec ses amis et sa famille !" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "Tweetez que vous êtes inscrits pour ce cours" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -10499,6 +10383,17 @@ msgstr "" msgid "Additional Resources" msgstr "Ressources complémentaires" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "S'inscrire" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -10578,7 +10473,7 @@ msgid "No content has been added to this course" msgstr "Aucun contenu n'a été ajouté à ce cours" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -10619,11 +10514,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Voir les mises à jour dans Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Infos et actualités" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Navigation des documents pédagogiques" @@ -10631,7 +10526,6 @@ msgstr "Navigation des documents pédagogiques" msgid "Course Handouts" msgstr "Documents de cours" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "Ancienne version du tableau de bord de l'enseignant" @@ -10689,7 +10583,6 @@ msgstr "Gestion des groupes" msgid "Grade Downloads" msgstr "Téléchargement des notes" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10731,7 +10624,6 @@ msgstr "" "Les travaux définis pour ce cours devraient correspondre à ceux du bulletin " "de notes, pour que ceci fonctionne correctement !" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Nom du bulletin de notes :" @@ -10745,7 +10637,6 @@ msgstr "Nom du travail :" msgid "Course-specific grade adjustment" msgstr "Ajustement spécifique des notes" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10784,7 +10675,6 @@ msgstr "Données d'inscription" msgid "Pull enrollment from remote gradebook" msgstr "Récupérer une inscription depuis un bulletin de notes distant" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Section :" @@ -10829,7 +10719,6 @@ msgstr "Jour" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Étudiants" @@ -10924,7 +10813,6 @@ msgstr "Durée (sec)" msgid "Task Progress" msgstr "Progression de la tâche" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "inconnu" @@ -11011,8 +10899,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Progression dans le cours de l'étudiant '{username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "Télécharger votre certificat" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -11093,7 +10991,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "Votre {cert_name_short} est en cours de préparation" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Ce lien ouvrira/téléchargera un document PDF" @@ -11102,25 +10999,6 @@ msgstr "Ce lien ouvrira/téléchargera un document PDF" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Comme nous ne disposions pas de jeu valide de photos de vérification de " -"votre part lorsque votre {cert_name_long} a été généré, nous n'avons pas pu " -"vous octroyer un certificat vérifié {cert_name_short}. Un certificat sur " -"l'honneur {cert_name_short} vous a été délivré en remplacement. " - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "Télécharger votre {cert_name_short} (PDF)" @@ -11141,11 +11019,29 @@ msgstr "Télécharger votre {cert_name_short} vérifié (PDF)" msgid "Complete our course feedback survey" msgstr "Compléter notre sondage de remarques à propos du cours" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Comme nous ne disposions pas de jeu valide de photos de vérification de " +"votre part lorsque votre {cert_name_long} a été généré, nous n'avons pas pu " +"vous octroyer un certificat vérifié {cert_name_short}. Un certificat sur " +"l'honneur {cert_name_short} vous a été délivré en remplacement. " + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Image de couverture" @@ -11154,11 +11050,6 @@ msgstr "{course_number} {course_name} Image de couverture" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Inscrit en tant que:" @@ -11179,7 +11070,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "Vous êtes inscrit en tant qu'étudiant vérifié" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -11189,7 +11079,6 @@ msgstr "" msgid "Verified" msgstr "Vérifié" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Vous êtes inscrit en tant qu'étudiant code d'honneur" @@ -11248,7 +11137,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -11307,44 +11195,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Voir le cours" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Voir le cours" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "Êtes-vous sûr de vouloir vous désinscrire de ce cours acheté" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "Êtes vous sur de vouloir vous désinscrire de" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Paramètres de messagerie" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11360,7 +11237,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name} : Vérifier à nouveau par {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Actions de notification" @@ -11407,7 +11283,6 @@ msgstr "Refusé :" msgid "Approved:" msgstr "Approuvé :" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "Etat de vérification d'identité" @@ -11614,9 +11489,7 @@ msgstr "Éditer le message" msgid "Edit post title" msgstr "Éditer le titre du message" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Titre" @@ -11628,7 +11501,6 @@ msgstr "Mettre à jour le message" msgid "Show Comments (%(num_comments)s)" msgstr "Affichier (%(num_comments)s) Commentaires" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Ajouter un commentaire" @@ -11649,7 +11521,6 @@ msgstr "approuvé %(time_ago)s par %(user)s" msgid "endorsed %(time_ago)s" msgstr "approuvé %(time_ago)s" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "Dénoncé" @@ -11818,7 +11689,6 @@ msgstr "Ajouter un message" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "Type de message :" @@ -11839,7 +11709,6 @@ msgstr "" msgid "Topic Area:" msgstr "Sujet :" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "Filtrer les sujets" @@ -11955,7 +11824,6 @@ msgstr "" msgid "User Profile" msgstr "Profil utilisateur" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "…" @@ -12790,8 +12658,6 @@ msgstr "Marquer comme contenu inapproprié pour examen ultérieur" msgid "Skip" msgstr "Passer" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12853,12 +12719,10 @@ msgstr "Nom d'affichage du cours :" msgid "Has the course started?" msgstr "Le cours a-t-il commencé ?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Oui" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Non" @@ -13022,7 +12886,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -13172,7 +13035,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -13238,7 +13100,6 @@ msgstr "Veuillez entrer la valeur numérique du bon de réduction" msgid "Edit Coupon" msgstr "Éditer le bon de réduction" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "Mettre à jour le bon de réduction" @@ -13272,9 +13133,6 @@ msgstr "" "assigner une date d'échéance anticipée à un étudiant." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -13283,15 +13141,10 @@ msgstr "" "étudiant ici :" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Adresse email Étudiant ou Nom d'utilisateur" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Choisissez les unités notées :" @@ -13371,7 +13224,6 @@ msgstr "Générer le code d'enregistrement Modal" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "Nom de l'organisation" @@ -13489,7 +13341,6 @@ msgstr "Chargement de la liste des exercices..." msgid "Gender Distribution" msgstr "Répartition selon le sexe" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Tableau de bord enseignant" @@ -13502,7 +13353,6 @@ msgstr "Retourner à l’ancien tableau de bord" msgid "Batch Enrollment" msgstr "Inscription Automatique" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -13518,12 +13368,10 @@ msgstr "" "Vous ne recevrez pas de notification pour les e-mails rejetés, donc soyez " "doublement attentif à l'orthographe." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Adresses e-mail/nom d'utilisateurs" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Inscription Automatique" @@ -13550,12 +13398,10 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "Cocher cette case n'a aucun effet si 'Se désinscrire' est coché." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Notifier les utilisateurs par e-mail" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -13564,10 +13410,6 @@ msgstr "" "Si cette option est cochée, les utilisateurs recevront une " "notification par e-mail." -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "S'inscrire" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "Inscrire/Enregistrer des étudiants " @@ -13795,7 +13637,6 @@ msgstr "" "Vous pouvez cliquer sur n'importe quelle barre pour lister les étudiants qui" " ont ouvert la sous-section. " -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -13836,14 +13677,12 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "Télécharger les notes de l'étudiant au format CSV" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" "Ceci est une liste partielle, téléchargez le fichier .csv pour voir tous les" " étudiants." -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Envoyer l'email" @@ -13856,12 +13695,10 @@ msgstr "Envoyez à:" msgid "Myself" msgstr "Moi même" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "L'équipe et les enseignants" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Tous (élèves, personnel et professeur)" @@ -13958,7 +13795,6 @@ msgstr "" msgid "Show Email Task History" msgstr "Afficher l'historique des tâches liées aux emails" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -14000,19 +13836,16 @@ msgstr "Suivi de Progression Étudiant" msgid "Student-specific grade adjustment" msgstr "Ajustement de note spécifique à un étudiant" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "Précisez un problème du cours à l'aide de sa localisation complète :" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Localisation de l'exercice" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -14409,7 +14242,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -14431,7 +14263,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -14619,15 +14450,10 @@ msgid " {course_name} " msgstr " {course_name} " #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -14740,7 +14566,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -14766,19 +14591,16 @@ msgstr "" msgid "TOTAL:" msgstr "TOTAL:" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "Une fois cet achat terminé, " -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "vous serez inscrit à ce cours." @@ -14838,12 +14660,10 @@ msgstr "" "Cette page est laissée vide. Elle n'est pas utilisée par edx.org, mais est " "laissée ici pour une éventuelle utilisation par l'installation d'Open edX." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "Blog" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "Faire un don" @@ -14856,14 +14676,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Kit média" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Dans la presse" @@ -15159,7 +14976,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -15169,19 +14985,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Reprendre" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "Pas mal" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Astuces pour prendre une photo convenable" @@ -15204,7 +15017,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Utilisez le bouton de l'appareil photo quand vous serez en position" @@ -15215,19 +15027,16 @@ msgstr "Pour prendre votre photo" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Utiliser la case à cocher" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "une fois que vous êtes satisfait de la photo" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Questions fréquentes" @@ -15247,7 +15056,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "Que faites-vous avec cette photo ?" @@ -15331,7 +15139,6 @@ msgstr "Compléter vos autres revérifications" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Retourner où vous étiez" @@ -15348,15 +15155,10 @@ msgid "You currently need to re-verify for the following courses:" msgstr "" "Vous devez effectuer une nouvelle vérification pour les cours suivants :" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "Nouvelle vérification le {date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "Vérifier à nouveau le {course_number}" @@ -15624,7 +15426,6 @@ msgid "" msgstr "" "Veuillez vérifier que les photos répondent aux prérequis listés ci-dessous." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "La photo ci-dessus nécessite de répondre aux prérequis suivants :" @@ -15637,7 +15438,6 @@ msgstr "Soyez bien éclairé" msgid "Show your whole face" msgstr "Montrez votre visage en entier" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -15705,7 +15505,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Retour à votre tableau de bord" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "Nouvelle vérification échouée" @@ -15723,9 +15522,6 @@ msgid "Please contact support if you believe this message to be in error." msgstr "" "Veuillez contacter le support si vous pensez que ce message est une erreur." -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(actif){span_end}" @@ -15831,8 +15627,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Fichiers et uploads" @@ -15852,8 +15647,7 @@ msgstr "Contenu" msgid "Page Actions" msgstr "Actions de la Page" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Envoyer un Nouveau Fichier" @@ -15923,7 +15717,7 @@ msgstr "Votre fichier a été supprimé." msgid "close alert" msgstr "fermez l'alerte" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Checklists du cours" @@ -15964,7 +15758,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Dupliquer" @@ -15977,7 +15770,7 @@ msgid "Delete this component" msgstr "Supprimer ce composant" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "Glissez pour modifier l'ordre" @@ -16109,7 +15902,7 @@ msgstr "" "que celui du cours d'origine.)" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Organisation" @@ -16119,7 +15912,6 @@ msgstr "Organisation" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "par exemple, UniversitéX ou OrganisationX" @@ -16131,8 +15923,6 @@ msgstr "" "Nom de l'organisme qui parraine le nouveau cours. (Ce nom est souvent le " "même que celui de l'organisation d'origine.)" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "Remarque: aucun espace ou caractère spécial n'est autorisé." @@ -16217,7 +16007,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Actualités du Cours" @@ -16237,7 +16027,6 @@ msgstr "" "et pour répondre aux questions des étudiants. Vous pouvez ajouter ou éditer " "les mises à jour en HTML." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Plan du Cours" @@ -16294,7 +16083,7 @@ msgstr "Aperçu réel" msgid "Course Start Date:" msgstr "Date de début du cours :" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "Modifier la date de début" @@ -16363,8 +16152,8 @@ msgstr "En savoir plus à propos de l'aperçu du cours" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Pages" @@ -16386,11 +16175,11 @@ msgstr "" msgid "Show this page" msgstr "Montrer cette page" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Montrer/cacher la page" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "Cette page ne peut pas être reclassée." @@ -16469,7 +16258,6 @@ msgstr "" "personnalisées." #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "Fermer la fenêtre contextuelle" @@ -16511,7 +16299,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Retour au tableau de bord" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Export du cours" @@ -16642,8 +16430,7 @@ msgstr "" msgid "Export Course to Git" msgstr "Exporter le Cours vers Git" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Exporter vers Git" @@ -16692,13 +16479,11 @@ msgstr "Votre cours :" msgid "Course git url:" msgstr "url git du cours :" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -16721,10 +16506,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "En savoir plus" @@ -16776,8 +16566,8 @@ msgid "Course Team" msgstr "Équipe pédagogique" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Paramètres avancés" @@ -16801,7 +16591,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "Les multiples fonctionnalités de {studio_name}" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -16851,7 +16641,6 @@ msgstr "" "Construisez et publiez les sections à vos étudiants " "progressivement. Vous n'avez pas l'obligation de tout préparer d'un coup." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "L’apprentissage réclame plus que des cours magistraux" @@ -16900,7 +16689,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -17015,7 +16804,7 @@ msgstr "" "Les étudiants ne seront pas en mesure d'accéder à ce composant. Modifiez " "votre composant pour corriger l'erreur." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Import de Cours" @@ -17175,8 +16964,7 @@ msgstr "" "à ces composantes peuvent être perdues. Ces données incluent les points des " "étudiants pour le problème." -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "Accueil {studio_name}" @@ -17192,7 +16980,7 @@ msgstr "" msgid "Email staff to create course" msgstr "Envoyez un email à l'équipe pédagogique pour créer un cours" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "Merci de corriger les champs en surbrillance ci-dessous." @@ -17238,7 +17026,7 @@ msgid "" msgstr "" "Le nombre unique qui identifie le cours à l'intérieur de l'organisation." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -17250,7 +17038,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "Le trimestre durant lequel le cours va s'exécuter." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Créer" @@ -17281,7 +17069,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -17311,7 +17099,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "Cours dispensé:" @@ -17360,7 +17148,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "Créer votre premier Cours" @@ -17381,7 +17169,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "Statut de votre requête de création de Cours :" @@ -17389,7 +17177,7 @@ msgstr "Statut de votre requête de création de Cours :" msgid "Request the Ability to Create Courses" msgstr "Demander la permission de créer des Cours" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "Statut de votre requête de création de Cours" @@ -17401,7 +17189,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "Votre requête de création de Cours est :" @@ -17453,7 +17241,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -17461,7 +17249,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -17530,7 +17318,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -17584,7 +17372,7 @@ msgstr "" msgid "Sign In" msgstr "Se Connecter" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -17643,13 +17431,11 @@ msgstr "" msgid "Add User" msgstr "Ajouter un utilisateur" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "Rôle en cours :" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "Vous !" @@ -17906,7 +17692,6 @@ msgstr "Information de base" msgid "The nuts and bolts of your course" msgstr "Les références de votre Cours" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "Ce champ est désactivé : Cette information ne peut pas être changée" @@ -17968,8 +17753,7 @@ msgstr "Premier jour de Cours" msgid "Course Start Time" msgstr "Heure de début du Cours" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -18056,7 +17840,6 @@ msgstr "" "Présentations, pré-requis, FAQs qui sont utilisés sur la %s (formatés en " "HTML)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Image du cours" @@ -18313,7 +18096,6 @@ msgstr "" "laboratoires, des quiz, des examens et préciser la valeur des points pour " "chacune de ces tâches." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "Déplier ou Replier" @@ -18372,8 +18154,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "En savoir plus à propos des manuels" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -18557,7 +18338,7 @@ msgstr "Nous contacter" msgid "Current Course:" msgstr "Cours actuel :" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -18597,7 +18378,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "Aide & Navigation Profil" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "Aide contextuelle en ligne" @@ -18617,12 +18398,10 @@ msgstr "Vous n'êtes pas connecté" msgid "Launch Latex Source Compiler" msgstr "Exécuter le compilateur Latex" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "Entête 1" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "Explication" @@ -18647,7 +18426,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -18663,7 +18442,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -18715,11 +18494,11 @@ msgstr "" "pourrez utiliser des fonctionnalités plus complexes, comme ajouter un " "module, des méta-données, des articles liés, etc." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Contenu" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Sommaire" @@ -19107,11 +18886,11 @@ msgstr "Révisions de l'attachement" msgid "%s was successfully added." msgstr "%s ajouté avec succès." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Votre fichier ne peut pas être sauvegardé: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.mo b/conf/locale/fr/LC_MESSAGES/djangojs.mo index d77244eb4e..97d73f79ae 100644 Binary files a/conf/locale/fr/LC_MESSAGES/djangojs.mo and b/conf/locale/fr/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.po b/conf/locale/fr/LC_MESSAGES/djangojs.po index 5ea9e3b2b5..64a52542f1 100644 --- a/conf/locale/fr/LC_MESSAGES/djangojs.po +++ b/conf/locale/fr/LC_MESSAGES/djangojs.po @@ -76,6 +76,7 @@ # Marie-Andrée Coulombe , 2014 # moocit-france , 2015 # rafcha , 2014-2015 +# Sébastien Viallemonteil , 2015 # Steven BERNARD , 2014 # #-#-#-#-# underscore-studio.po (edx-platform) #-#-#-#-# # edX translation file @@ -93,9 +94,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-08 17:51+0000\n" -"Last-Translator: moocit-france \n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" +"Last-Translator: Sarina Canelake \n" "Language-Team: French (http://www.transifex.com/projects/p/edx-platform/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -107,7 +108,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -149,8 +149,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Inconnu" @@ -158,17 +156,14 @@ msgstr "Inconnu" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Supprimer" @@ -266,7 +261,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s point possible)" msgstr[1] "(%(num_points)s points possibles)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Réponse:" @@ -274,7 +268,6 @@ msgstr "Réponse:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Masquer la réponse" @@ -295,7 +288,6 @@ msgstr "Réponse cachée" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "sans réponse" @@ -314,7 +306,6 @@ msgstr "Vous devez choisir une appréciation avant de pouvoir envoyer. " #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Votre résultat n'est pas suffisant pour passer à l'étape suivante." @@ -388,11 +379,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Afficher la question" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Cacher la question" @@ -400,7 +389,6 @@ msgstr "Cacher la question" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Paragraphe" @@ -411,21 +399,18 @@ msgstr "Préformaté" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Entête 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Entête 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Entête 3" @@ -1299,7 +1284,6 @@ msgstr "Supprimer le lien" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Remplacer tout" @@ -1313,7 +1297,6 @@ msgstr "Remplacer avec" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1666,18 +1649,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "incorrect" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "correct" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "réponse" @@ -1799,7 +1778,6 @@ msgstr "HD activée" msgid "HD off" msgstr "HD désactivée" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Position de la vidéo" @@ -1846,7 +1824,6 @@ msgstr "Mise à jour des derniers ajouts à la bibliothèque" msgid "Creating missing groups" msgstr "Création des groupes manquants" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Masquer la discussion" @@ -1856,13 +1833,9 @@ msgid "Show Discussion" msgstr "Afficher la discussion" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1901,8 +1874,6 @@ msgstr "" "tard. " #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2242,12 +2213,10 @@ msgstr[1] "Cochez la case pour supprimer %(count)s drapeaux." msgid "All flags have been removed. To undo, uncheck the box." msgstr "Tous les drapeaux ont été supprimés. Pour annuler, décochez la case." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Vous avez déjà signalé cette annotation." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Signaler une annotation comme inappropriée ou offensante." @@ -2288,7 +2257,6 @@ msgstr "Date de l'envoi" msgid "More" msgstr "Plus" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Mes Notes" @@ -2297,32 +2265,26 @@ msgstr "Mes Notes" msgid "Instructor" msgstr "Enseignant" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Public" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Recherche" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Utilisateurs" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Balises" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Texte de l'annotation" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2425,7 +2387,6 @@ msgstr "Nom d'utilisateur" msgid "Email" msgstr "E-mail" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Retirer l'accès" @@ -2438,7 +2399,6 @@ msgstr "Veuillez saisir un nom d'utilisateur ou un e-mail." msgid "Please enter a username or email." msgstr "Veuillez saisir un nom d'utilisateur ou un e-mail." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Erreur lors du changement des permissions de l'utilisateur." @@ -2666,7 +2626,6 @@ msgstr "" msgid "Error sending email." msgstr "Erreur lors de l’envoi de l’e-mail." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Il n'y a pas d'historique de courriel pour ce cours" @@ -2683,10 +2642,6 @@ msgstr "" "Il y a eu une erreur lors de l'obtention de l'historique du contenu des " "e-mails pour ce cours." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2700,12 +2655,6 @@ msgstr "" "Erreur dans l'obtention de l'url de progression de l'étudiant <%= student_id" " %>'. Vérifiez qu'il n'y a pas d'erreur dans l'identifiant de l'étudiant. " -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Merci d'introduire la localisation d'un exercice." @@ -3000,7 +2949,6 @@ msgstr "Le système est entré dans un état invalide : <%= state %>" msgid "System got into invalid state for submission: " msgstr "Le système est entré dans un état invalide pour la soumission : " -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Cacher)" @@ -3094,7 +3042,7 @@ msgstr "saisir une description de l’image ici" msgid "enter link description here" msgstr "saisir une description du lien ici" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "saisir du code ici" @@ -3164,6 +3112,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3189,16 +3141,16 @@ msgid "Hide notes" msgstr "Masquer les notes" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "Affichage des notes en cours" +msgid "Notes visible" +msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "Afficher les notes" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "Masquage des notes en cours" +msgid "Notes hidden" +msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3341,11 +3293,11 @@ msgstr "" #: lms/static/js/student_account/account.js msgid "Please enter a valid email address" -msgstr "" +msgstr "Veuillez entrer une adresse email valide" #: lms/static/js/student_account/account.js msgid "Please enter a valid password" -msgstr "" +msgstr "Veuillez entrer un mot de passe valide" #: lms/static/js/student_account/account.js msgid "" @@ -3377,6 +3329,14 @@ msgstr "Nous n’avons pas pu afficher la liste des langues." msgid "Saved" msgstr "Enregistré" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "Une erreur est survenue. Merci de réessayer de nouveau." @@ -3413,7 +3373,7 @@ msgstr "" #: lms/static/js/verify_student/views/webcam_photo_view.js msgid "No Webcam Detected" -msgstr "" +msgstr "Aucune Webcam détectée" #: lms/static/js/verify_student/views/webcam_photo_view.js msgid "You don't seem to have a webcam connected." @@ -3423,18 +3383,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3443,7 +3391,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Impossible de récupérer les données, merci de réessayer plus tard." @@ -3483,7 +3430,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio a des problèmes pour sauvegarder votre travail" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3494,7 +3441,6 @@ msgstr "Studio a des problèmes pour sauvegarder votre travail" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Sauvegarde en cours" @@ -3595,8 +3541,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "Choisir un nouveau fichier" @@ -3820,7 +3766,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Le délai doit être au format HH: MM." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3886,8 +3831,36 @@ msgstr "" msgid "Load Another File" msgstr "Envoyer un autre fichier" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "Non utilisé" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "utilisée par %(count) unité." +msgstr[1] "utilisée par %(count)s unités." + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Course Outline" +msgstr "Plan du Cours" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3928,18 +3901,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "Contient %(count)s groupe" msgstr[1] "Contient %(count)s groupes" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "Non utilisé" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "utilisée par %(count) unité." -msgstr[1] "utilisée par %(count)s unités." - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3950,10 +3911,6 @@ msgstr "" "Cette configuration de groupe n'est pas utilisée. Commencez par ajouter une " "expérience de contenu à l'une des unités à l'aide de %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -msgid "Course Outline" -msgstr "Plan du Cours" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -4030,8 +3987,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -4145,7 +4101,6 @@ msgstr "Publier toutes les modifications non publiées pour cet %(item)s ?" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "Publier" @@ -4184,7 +4139,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4214,7 +4168,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Rendre visible aux étudiants" @@ -4341,14 +4294,9 @@ msgstr "" msgid "Upload translation" msgstr "Envoyer une traduction" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4458,7 +4406,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "Qu'est ce que cela signifie?" @@ -4635,7 +4582,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "Nous n'avons pas pu vous connecter." -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4695,6 +4641,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "Créez votre compte" @@ -4866,6 +4816,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -5144,7 +5102,6 @@ msgstr "Obsolète" msgid "List of uploaded files and assets in this course" msgstr "Liste des fichiers et des activités téléchargés dans ce cours" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -5214,6 +5171,20 @@ msgstr "" "Attention: la dernière version publiée de cette unité est active. En " "publiant des modifications vous allez changer l'expérience des étudiants." +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "Identifiant" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5224,10 +5195,18 @@ msgstr "message.d'erreur" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5255,12 +5234,10 @@ msgstr "" msgid "Display Name" msgstr "Nom d'affichage" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "Configurer" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "Glissez pour modifier l'ordre" @@ -5360,7 +5337,6 @@ msgstr "Date de rendu :" msgid "Due Time in UTC:" msgstr "Horaire de rendu en UTC :" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "Effacer la date limite d'évaluation :" @@ -5436,10 +5412,6 @@ msgstr "Évaluation" msgid "Grade as:" msgstr "Noter comme :" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "Identifiant" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5579,7 +5551,6 @@ msgstr "Dernière publication %(last_published_date)s par %(publish_username)s" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "message" @@ -5658,7 +5629,6 @@ msgstr "Date de diffusion :" msgid "Release Time in UTC:" msgstr "Horaire de diffusion en UTC :" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "Effacer Date/Horaire" @@ -5728,7 +5698,6 @@ msgstr "" "Veuillez vérifier les commentaires de validation suivants et en tenir compte" " dans les paramètres de votre cours:" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "Modifier le nom" @@ -5861,15 +5830,9 @@ msgstr "" "transcription, téléversez un nouveau fichier srt." #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Téléverser une nouvelle transcription" @@ -5879,11 +5842,8 @@ msgstr "Téléverser une nouvelle transcription" msgid "Upload New .srt Transcript" msgstr "Téléverser une nouvelle transcription .srt" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Télécharger la transcrition pour l'éditer" @@ -5903,7 +5863,6 @@ msgstr "" "transcription Youtube ou téléversez votre propre fichier de transcription " "srt." -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "Importer une transcription YouTube" @@ -5932,8 +5891,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "Souhaitez-vous remplacer la transcription EdX par celle de YouTube?" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "Oui, remplacer la transcription EdX par celle de YouTube" @@ -5967,8 +5924,6 @@ msgstr "" " synchronisée. Souhaitez-vous utiliser le fichier courant de transcription " "synchronisée ou téléverser un nouveau fichier srt de transcription ?" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "Utiliser la transcription courante" diff --git a/conf/locale/gl/LC_MESSAGES/django.mo b/conf/locale/gl/LC_MESSAGES/django.mo index 243954bad6..950e1ed25a 100644 Binary files a/conf/locale/gl/LC_MESSAGES/django.mo and b/conf/locale/gl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/gl/LC_MESSAGES/django.po b/conf/locale/gl/LC_MESSAGES/django.po index 652c6d4895..90e8db5523 100644 --- a/conf/locale/gl/LC_MESSAGES/django.po +++ b/conf/locale/gl/LC_MESSAGES/django.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Luz Varela Armas \n" "Language-Team: Galician (http://www.transifex.com/projects/p/edx-platform/language/gl/)\n" @@ -77,7 +77,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -85,7 +85,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -97,7 +96,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -124,15 +122,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -226,6 +220,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -246,7 +316,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -303,6 +373,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -413,102 +490,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -569,7 +550,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1003,7 +984,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1016,7 +997,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1063,7 +1044,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1102,13 +1083,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1140,17 +1119,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1193,7 +1170,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1349,7 +1325,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1381,7 +1356,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1433,7 +1407,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1462,7 +1435,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1603,8 +1575,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2121,12 +2091,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2245,9 +2209,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2485,7 +2446,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2561,8 +2521,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3141,7 +3099,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3393,7 +3351,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3536,7 +3493,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3584,7 +3540,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3622,7 +3577,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3919,19 +3873,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4039,6 +3989,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4087,7 +4053,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4147,7 +4112,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4212,12 +4177,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4280,9 +4244,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4316,7 +4279,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4350,22 +4313,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4374,7 +4325,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4475,12 +4425,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4594,18 +4541,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4636,7 +4579,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4748,7 +4690,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4815,8 +4756,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4870,7 +4811,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4929,7 +4869,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5178,7 +5117,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5228,7 +5166,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5318,8 +5256,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5415,7 +5352,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5445,14 +5381,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5545,7 +5478,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5582,7 +5515,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5712,7 +5644,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6059,7 +5990,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6165,7 +6095,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6347,7 +6276,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6400,12 +6328,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6425,10 +6350,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6465,7 +6387,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6477,11 +6399,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6503,7 +6425,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6731,12 +6653,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6746,21 +6665,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6838,8 +6749,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6851,12 +6760,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6866,11 +6773,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6982,7 +6887,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7012,7 +6916,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7228,8 +7136,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7241,13 +7148,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7267,7 +7169,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7276,13 +7178,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7297,10 +7197,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7310,7 +7208,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7342,14 +7240,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7363,7 +7260,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7390,13 +7287,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7417,7 +7312,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7500,7 +7394,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7552,7 +7446,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7586,7 +7480,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7637,15 +7531,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7709,7 +7594,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7746,7 +7631,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7789,13 +7674,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7817,31 +7700,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7858,7 +7741,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7874,7 +7756,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7901,7 +7782,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7961,8 +7842,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8099,7 +7978,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8280,7 +8159,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8301,17 +8180,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8331,13 +8208,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8355,7 +8230,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8420,7 +8295,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8431,7 +8305,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8552,11 +8425,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8607,12 +8480,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8621,15 +8494,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8730,7 +8603,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8786,7 +8659,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8864,6 +8736,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8878,6 +8762,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9015,7 +8904,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9031,7 +8920,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9370,8 +9258,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9429,12 +9315,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9488,6 +9372,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9564,7 +9459,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9600,11 +9495,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9612,7 +9507,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9666,7 +9560,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9697,7 +9590,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9711,7 +9603,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9746,7 +9637,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9791,7 +9681,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9882,7 +9771,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9969,7 +9857,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10035,7 +9933,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10044,21 +9941,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10077,11 +9959,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10090,11 +9986,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10115,7 +10006,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10125,7 +10015,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10184,7 +10073,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10238,44 +10126,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10291,7 +10168,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10333,7 +10209,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10531,9 +10406,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10545,7 +10418,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10566,7 +10438,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10731,7 +10602,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10750,7 +10620,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10863,7 +10732,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11587,8 +11455,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11648,12 +11514,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11791,7 +11655,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11939,7 +11802,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12004,7 +11866,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12034,24 +11895,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12119,7 +11972,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12233,7 +12085,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12246,7 +12097,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12258,12 +12108,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12285,22 +12133,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12482,7 +12324,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12517,12 +12358,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12535,12 +12374,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12621,7 +12458,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12660,19 +12496,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13014,7 +12847,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13036,7 +12868,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13221,15 +13052,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13336,7 +13162,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13362,19 +13187,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13429,12 +13251,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13447,14 +13267,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13726,7 +13543,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13734,19 +13550,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13767,7 +13580,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13778,19 +13590,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13808,7 +13617,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13881,7 +13689,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13897,15 +13704,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14129,7 +13931,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14142,7 +13943,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14198,7 +13998,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14213,9 +14012,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14316,8 +14112,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14337,8 +14132,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14408,7 +14202,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14443,7 +14237,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14456,7 +14249,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14579,7 +14372,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14589,7 +14382,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14599,8 +14391,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14675,7 +14465,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14690,7 +14480,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14745,7 +14534,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14804,8 +14593,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14824,11 +14613,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14892,7 +14681,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14934,7 +14722,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15062,8 +14850,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15107,13 +14894,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15136,10 +14921,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15188,8 +14978,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15211,7 +15001,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15256,7 +15046,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15298,7 +15087,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15399,7 +15188,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15530,8 +15319,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15547,7 +15335,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15586,7 +15374,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15596,7 +15384,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15627,7 +15415,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15657,7 +15445,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15702,7 +15490,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15723,7 +15511,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15731,7 +15519,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15743,7 +15531,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15803,7 +15591,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15863,7 +15651,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15917,7 +15705,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15970,13 +15758,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16215,7 +16001,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16274,8 +16059,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16358,7 +16142,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16584,7 +16367,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16636,8 +16418,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16817,7 +16598,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16857,7 +16638,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16877,12 +16658,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16907,7 +16686,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16923,7 +16702,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16970,11 +16749,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17328,11 +17107,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.mo b/conf/locale/gl/LC_MESSAGES/djangojs.mo index 7f00bba333..d4f9c6b8de 100644 Binary files a/conf/locale/gl/LC_MESSAGES/djangojs.mo and b/conf/locale/gl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.po b/conf/locale/gl/LC_MESSAGES/djangojs.po index 318bdac8a9..4098695121 100644 --- a/conf/locale/gl/LC_MESSAGES/djangojs.po +++ b/conf/locale/gl/LC_MESSAGES/djangojs.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Galician (http://www.transifex.com/projects/p/edx-platform/language/gl/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -85,8 +84,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -94,17 +91,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -197,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -205,7 +198,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -226,7 +218,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -245,7 +236,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -309,11 +299,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -321,7 +309,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -332,21 +319,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1217,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1231,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1568,18 +1550,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1744,7 +1721,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1754,13 +1730,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1790,8 +1762,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2091,12 +2061,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2137,7 +2105,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2146,32 +2113,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2272,7 +2233,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2285,7 +2245,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2473,7 +2432,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2486,10 +2444,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2500,12 +2454,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2759,7 +2707,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2853,7 +2800,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2923,6 +2870,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2944,7 +2895,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2952,7 +2903,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3125,6 +3076,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3171,18 +3130,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3191,7 +3138,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3228,7 +3174,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3239,7 +3185,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "A gardar" @@ -3338,8 +3283,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3548,7 +3493,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3606,8 +3550,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3648,18 +3621,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3668,11 +3629,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3747,8 +3703,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3853,7 +3808,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3892,7 +3846,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3920,7 +3873,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4035,14 +3987,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4099,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4266,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4323,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4498,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4784,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4851,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4875,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4912,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5015,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5085,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5217,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5295,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5348,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5467,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5479,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5496,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5520,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5546,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/gu/LC_MESSAGES/django.mo b/conf/locale/gu/LC_MESSAGES/django.mo index 3a7f00f79a..26d7403562 100644 Binary files a/conf/locale/gu/LC_MESSAGES/django.mo and b/conf/locale/gu/LC_MESSAGES/django.mo differ diff --git a/conf/locale/gu/LC_MESSAGES/django.po b/conf/locale/gu/LC_MESSAGES/django.po index 5227787d00..6771a64f7b 100644 --- a/conf/locale/gu/LC_MESSAGES/django.po +++ b/conf/locale/gu/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-05-21 14:09+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Gujarati (http://www.transifex.com/projects/p/edx-platform/language/gu/)\n" @@ -72,7 +72,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -80,7 +80,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -92,7 +91,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -119,15 +117,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -221,6 +215,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -241,7 +311,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -298,6 +368,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -408,102 +485,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -564,7 +545,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -998,7 +979,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1011,7 +992,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1050,7 +1031,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1058,7 +1039,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1097,13 +1078,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1135,17 +1114,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1188,7 +1165,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1344,7 +1320,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1376,7 +1351,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1428,7 +1402,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1457,7 +1430,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1598,8 +1570,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2116,12 +2086,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2240,9 +2204,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2480,7 +2441,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2556,8 +2516,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3136,7 +3094,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3388,7 +3346,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3531,7 +3488,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3579,7 +3535,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3617,7 +3572,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3914,19 +3868,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4034,6 +3984,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4082,7 +4048,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4142,7 +4107,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4207,12 +4172,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4275,9 +4239,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4311,7 +4274,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4345,22 +4308,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4369,7 +4320,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4470,12 +4420,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4589,18 +4536,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4631,7 +4574,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4743,7 +4685,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4810,8 +4751,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4865,7 +4806,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4924,7 +4864,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5173,7 +5112,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5223,7 +5161,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5313,8 +5251,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5410,7 +5347,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5440,14 +5376,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5540,7 +5473,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5577,7 +5510,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5707,7 +5639,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6054,7 +5985,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6160,7 +6090,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6342,7 +6271,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6395,12 +6323,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6420,10 +6345,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6460,7 +6382,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6472,11 +6394,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6498,7 +6420,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6726,12 +6648,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6741,21 +6660,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6833,8 +6744,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6846,12 +6755,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6861,11 +6768,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6977,7 +6882,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7007,7 +6911,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7223,8 +7131,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7236,13 +7143,8 @@ msgstr "" msgid "close" msgstr "બંધ" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7262,7 +7164,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7271,13 +7173,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7292,10 +7192,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7305,7 +7203,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7337,14 +7235,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7358,7 +7255,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7385,13 +7282,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7412,7 +7307,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7495,7 +7389,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7539,7 +7433,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7547,7 +7441,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7581,7 +7475,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7632,15 +7526,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7704,7 +7589,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7741,7 +7626,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7784,13 +7669,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7812,31 +7695,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7853,7 +7736,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7869,7 +7751,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7896,7 +7777,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7956,8 +7837,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8094,7 +7973,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8275,7 +8154,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8296,17 +8175,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8326,13 +8203,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8350,7 +8225,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8415,7 +8290,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8426,7 +8300,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8547,11 +8420,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8602,12 +8475,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8616,15 +8489,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8725,7 +8598,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8781,7 +8654,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8859,6 +8731,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8873,6 +8757,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9010,7 +8899,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9026,7 +8915,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9365,8 +9253,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9424,12 +9310,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9483,6 +9367,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9559,7 +9454,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9595,11 +9490,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9607,7 +9502,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9661,7 +9555,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9692,7 +9585,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9706,7 +9598,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9741,7 +9632,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9786,7 +9676,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9877,7 +9766,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9964,7 +9852,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10030,7 +9928,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10039,21 +9936,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10072,11 +9954,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10085,11 +9981,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10110,7 +10001,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10120,7 +10010,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10179,7 +10068,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10233,44 +10121,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10286,7 +10163,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10328,7 +10204,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10526,9 +10401,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10540,7 +10413,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10561,7 +10433,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10726,7 +10597,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10745,7 +10615,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10858,7 +10727,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11582,8 +11450,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11643,12 +11509,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11786,7 +11650,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11934,7 +11797,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11999,7 +11861,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12029,24 +11890,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12114,7 +11967,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12228,7 +12080,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12241,7 +12092,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12253,12 +12103,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12280,22 +12128,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12477,7 +12319,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12512,12 +12353,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12530,12 +12369,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12616,7 +12453,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12655,19 +12491,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13009,7 +12842,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13031,7 +12863,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13216,15 +13047,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13331,7 +13157,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13357,19 +13182,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13424,12 +13246,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13442,14 +13262,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13721,7 +13538,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13729,19 +13545,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13762,7 +13575,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13773,19 +13585,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13803,7 +13612,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13876,7 +13684,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13892,15 +13699,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14124,7 +13926,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14137,7 +13938,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14193,7 +13993,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14208,9 +14007,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14311,8 +14107,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14332,8 +14127,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14403,7 +14197,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14438,7 +14232,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14451,7 +14244,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14574,7 +14367,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14584,7 +14377,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14594,8 +14386,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14670,7 +14460,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14685,7 +14475,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14740,7 +14529,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14799,8 +14588,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14819,11 +14608,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14887,7 +14676,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14929,7 +14717,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15057,8 +14845,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15102,13 +14889,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15131,10 +14916,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15183,8 +14973,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15206,7 +14996,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15251,7 +15041,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15293,7 +15082,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15394,7 +15183,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15525,8 +15314,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15542,7 +15330,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15581,7 +15369,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15591,7 +15379,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15622,7 +15410,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15652,7 +15440,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15697,7 +15485,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15718,7 +15506,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15726,7 +15514,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15738,7 +15526,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15790,7 +15578,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15798,7 +15586,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15858,7 +15646,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15912,7 +15700,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15965,13 +15753,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16210,7 +15996,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16269,8 +16054,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16353,7 +16137,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16579,7 +16362,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16631,8 +16413,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16812,7 +16593,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16852,7 +16633,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16872,12 +16653,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16902,7 +16681,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16918,7 +16697,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16965,11 +16744,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17323,11 +17102,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/gu/LC_MESSAGES/djangojs.mo b/conf/locale/gu/LC_MESSAGES/djangojs.mo index b828f92fa8..13d547502c 100644 Binary files a/conf/locale/gu/LC_MESSAGES/djangojs.mo and b/conf/locale/gu/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/gu/LC_MESSAGES/djangojs.po b/conf/locale/gu/LC_MESSAGES/djangojs.po index 30da1df028..983a8a7bbe 100644 --- a/conf/locale/gu/LC_MESSAGES/djangojs.po +++ b/conf/locale/gu/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Gujarati (http://www.transifex.com/projects/p/edx-platform/language/gu/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2087,12 +2057,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3121,6 +3072,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3167,18 +3126,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3187,7 +3134,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3224,7 +3170,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3235,7 +3181,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3334,8 +3279,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3743,8 +3699,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3849,7 +3804,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3888,7 +3842,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3916,7 +3869,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4031,14 +3983,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4148,7 +4095,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4316,7 +4262,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4374,6 +4319,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4545,6 +4494,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4823,7 +4780,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4891,6 +4847,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4901,10 +4871,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4930,12 +4908,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5035,7 +5011,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5106,10 +5081,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5242,7 +5213,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5321,7 +5291,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5375,7 +5344,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5495,15 +5463,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5513,11 +5475,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5533,7 +5492,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5558,8 +5516,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5586,8 +5542,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/he/LC_MESSAGES/django.mo b/conf/locale/he/LC_MESSAGES/django.mo index 365e993715..b43d662f24 100644 Binary files a/conf/locale/he/LC_MESSAGES/django.mo and b/conf/locale/he/LC_MESSAGES/django.mo differ diff --git a/conf/locale/he/LC_MESSAGES/django.po b/conf/locale/he/LC_MESSAGES/django.po index 89374dbf4f..69472cf0a1 100644 --- a/conf/locale/he/LC_MESSAGES/django.po +++ b/conf/locale/he/LC_MESSAGES/django.po @@ -19,6 +19,7 @@ # Translators: # dotanlaks , 2014 # dotanlaks , 2014 +# yuval zana, 2015 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2015 edX @@ -45,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-03-26 18:20+0000\n" "Last-Translator: Ido\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" @@ -76,7 +77,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -84,7 +85,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -96,7 +96,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -123,15 +122,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -225,6 +220,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -245,7 +316,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -302,6 +373,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -412,102 +490,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -568,7 +550,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1002,7 +984,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1015,7 +997,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1054,7 +1036,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1062,7 +1044,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1101,13 +1083,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1139,17 +1119,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1192,7 +1170,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1348,7 +1325,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1380,7 +1356,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1432,7 +1407,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1461,7 +1435,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1602,8 +1575,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2120,12 +2091,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2244,9 +2209,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2484,7 +2446,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2560,8 +2521,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3140,7 +3099,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3392,7 +3351,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3535,7 +3493,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3583,7 +3540,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3621,7 +3577,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3918,19 +3873,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4038,6 +3989,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4086,7 +4053,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4146,7 +4112,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4211,12 +4177,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4279,9 +4244,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4315,7 +4279,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4349,22 +4313,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4373,7 +4325,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4474,12 +4425,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4593,18 +4541,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4635,7 +4579,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4747,7 +4690,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4814,8 +4756,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4869,7 +4811,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4928,7 +4869,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5177,7 +5117,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5227,7 +5166,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5317,8 +5256,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5414,7 +5352,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5444,14 +5381,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5544,7 +5478,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5581,7 +5515,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5711,7 +5644,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6058,7 +5990,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6164,7 +6095,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6346,7 +6276,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6399,12 +6328,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6424,10 +6350,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6464,7 +6387,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6476,11 +6399,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6502,7 +6425,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6730,12 +6653,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6745,21 +6665,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6837,8 +6749,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6850,12 +6760,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6865,11 +6773,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6981,7 +6887,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7011,7 +6916,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7227,8 +7136,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7240,13 +7148,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7266,7 +7169,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7275,13 +7178,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7296,10 +7197,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7309,7 +7208,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7341,14 +7240,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7362,7 +7260,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7389,13 +7287,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7416,7 +7312,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7499,7 +7394,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7543,7 +7438,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7551,7 +7446,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7585,7 +7480,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7636,15 +7531,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7708,7 +7594,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7745,7 +7631,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7788,13 +7674,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7816,31 +7700,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7857,7 +7741,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7873,7 +7756,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7900,7 +7782,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7960,8 +7842,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8098,7 +7978,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8279,7 +8159,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8300,17 +8180,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8330,13 +8208,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8354,7 +8230,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8419,7 +8295,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8430,7 +8305,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8551,11 +8425,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8606,12 +8480,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8620,15 +8494,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8729,7 +8603,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8785,7 +8659,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8863,6 +8736,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8877,6 +8762,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9014,7 +8904,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9030,7 +8920,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9369,8 +9258,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9428,12 +9315,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9487,6 +9372,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9563,7 +9459,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9599,11 +9495,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9611,7 +9507,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9665,7 +9560,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9696,7 +9590,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9710,7 +9603,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9745,7 +9637,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9790,7 +9681,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9881,7 +9771,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9968,7 +9857,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10034,7 +9933,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10043,21 +9941,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10076,11 +9959,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10089,11 +9986,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10114,7 +10006,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10124,7 +10015,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10183,7 +10073,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10237,44 +10126,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10290,7 +10168,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10332,7 +10209,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10530,9 +10406,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10544,7 +10418,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10565,7 +10438,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10730,7 +10602,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10749,7 +10620,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10862,7 +10732,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11586,8 +11455,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11647,12 +11514,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11790,7 +11655,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11938,7 +11802,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12003,7 +11866,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12033,24 +11895,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12118,7 +11972,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12232,7 +12085,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12245,7 +12097,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12257,12 +12108,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12284,22 +12133,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12481,7 +12324,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12516,12 +12358,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12534,12 +12374,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12620,7 +12458,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12659,19 +12496,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13013,7 +12847,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13035,7 +12868,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13220,15 +13052,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13335,7 +13162,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13361,19 +13187,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13428,12 +13251,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13446,14 +13267,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13725,7 +13543,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13733,19 +13550,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13766,7 +13580,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13777,19 +13590,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13807,7 +13617,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13880,7 +13689,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13896,15 +13704,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14128,7 +13931,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14141,7 +13943,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14197,7 +13998,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14212,9 +14012,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14315,8 +14112,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14336,8 +14132,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14407,7 +14202,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14442,7 +14237,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14455,7 +14249,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14578,7 +14372,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14588,7 +14382,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14598,8 +14391,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14674,7 +14465,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14689,7 +14480,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14744,7 +14534,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14803,8 +14593,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14823,11 +14613,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14891,7 +14681,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14933,7 +14722,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15061,8 +14850,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15106,13 +14894,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15135,10 +14921,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15187,8 +14978,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15210,7 +15001,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15255,7 +15046,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15297,7 +15087,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15398,7 +15188,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15529,8 +15319,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15546,7 +15335,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15585,7 +15374,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15595,7 +15384,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15626,7 +15415,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15656,7 +15445,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15701,7 +15490,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15722,7 +15511,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15730,7 +15519,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15742,7 +15531,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15794,7 +15583,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15802,7 +15591,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15862,7 +15651,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15916,7 +15705,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15969,13 +15758,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16214,7 +16001,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16273,8 +16059,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16357,7 +16142,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16583,7 +16367,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16635,8 +16418,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16816,7 +16598,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16856,7 +16638,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16876,12 +16658,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16906,7 +16686,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16922,7 +16702,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16969,11 +16749,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17327,11 +17107,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/he/LC_MESSAGES/djangojs.mo b/conf/locale/he/LC_MESSAGES/djangojs.mo index ea7f1ed828..6008f0b041 100644 Binary files a/conf/locale/he/LC_MESSAGES/djangojs.mo and b/conf/locale/he/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/he/LC_MESSAGES/djangojs.po b/conf/locale/he/LC_MESSAGES/djangojs.po index 566e348b5d..bb7e298fdf 100644 --- a/conf/locale/he/LC_MESSAGES/djangojs.po +++ b/conf/locale/he/LC_MESSAGES/djangojs.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -87,8 +86,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -96,17 +93,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -199,7 +193,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -207,7 +200,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -228,7 +220,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -247,7 +238,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -311,11 +301,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -323,7 +311,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -334,21 +321,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1219,7 +1203,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1233,7 +1216,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1570,18 +1552,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1699,7 +1677,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1746,7 +1723,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1756,13 +1732,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1792,8 +1764,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2093,12 +2063,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2139,7 +2107,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2148,32 +2115,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2274,7 +2235,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2287,7 +2247,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2475,7 +2434,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2488,10 +2446,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2502,12 +2456,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2761,7 +2709,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2855,7 +2802,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2925,6 +2872,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2946,7 +2897,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2954,7 +2905,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3127,6 +3078,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3173,18 +3132,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3193,7 +3140,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3230,7 +3176,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3241,7 +3187,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3340,8 +3285,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3550,7 +3495,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3608,8 +3552,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3650,18 +3623,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3670,11 +3631,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3749,8 +3705,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3855,7 +3810,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3894,7 +3848,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3922,7 +3875,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4037,14 +3989,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4154,7 +4101,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4322,7 +4268,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4380,6 +4325,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4551,6 +4500,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4829,7 +4786,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4897,6 +4853,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4907,10 +4877,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4936,12 +4914,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5041,7 +5017,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5112,10 +5087,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5248,7 +5219,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5327,7 +5297,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5381,7 +5350,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5501,15 +5469,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5519,11 +5481,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5539,7 +5498,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5564,8 +5522,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5592,8 +5548,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/hi/LC_MESSAGES/django.mo b/conf/locale/hi/LC_MESSAGES/django.mo index f4b4fdbbbc..7ff5de6787 100644 Binary files a/conf/locale/hi/LC_MESSAGES/django.mo and b/conf/locale/hi/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hi/LC_MESSAGES/django.po b/conf/locale/hi/LC_MESSAGES/django.po index ddfa9f003b..783c00bd03 100644 --- a/conf/locale/hi/LC_MESSAGES/django.po +++ b/conf/locale/hi/LC_MESSAGES/django.po @@ -72,7 +72,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: ria1234 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" @@ -100,11 +100,10 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "चर्चा" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -117,7 +116,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -144,15 +142,11 @@ msgstr "पूरा हुआ" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "नाम" @@ -249,6 +243,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "यूज़र का नाम कम से कम दो अक्षर लंबा होना चाहिए" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "मान्य ई-मेल की आवश्यकता है।" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "एक मान्य पासवर्ड की आवश्यकता है" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "आपका कानूनी नाम कम से कम दो अक्षर लंबा होना चाहिए" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"उपयोगकर्ता नाम केवल A-Z और 0-9 से मिलकर बना होना चाहिए, बिना किसी रिक्त " +"स्थान के।" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "आपको सेवा की शर्तों को स्वीकार करना होगा। " + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "शिक्षा के किसी एक स्तर की आवश्यकता है" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "आपके लिंग की आवश्यकता है" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "आपके जन्म के वर्ष की आवश्यकता की है" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "आपके डाक पते की आवश्यकता है" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "आपके लक्ष्यों का विवरण आवश्यक है" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "एक शहर का होना आवश्यक है" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "एक देश का होना आवश्यक है" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "भर्ती होने के लिए, आपको ऑनर कोड का पालन करना होगा।" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "पासवर्ड:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -269,7 +341,7 @@ msgstr "महिला" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "अन्य" @@ -327,6 +399,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -445,104 +524,6 @@ msgstr " '{username}' नाम का एक उपयोगकर्ता ख msgid "An account with the Email '{email}' already exists." msgstr "इस ई-मेल का एक खाता '{email}' पहले से मौजूद है" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "त्रुटि (401 {field})। हमें ई-मेल भेजें।" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "भर्ती होने के लिए, आपको ऑनर कोड का पालन करना होगा।" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "आपको सेवा की शर्तों को स्वीकार करना होगा। " - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "यूज़र का नाम कम से कम दो अक्षर लंबा होना चाहिए" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "मान्य ई-मेल की आवश्यकता है।" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "आपका कानूनी नाम कम से कम दो अक्षर लंबा होना चाहिए" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "एक मान्य पासवर्ड की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "सेवा की शर्तें स्वीकारने की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "ऑनर कोड से सहमत होने की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "शिक्षा के किसी एक स्तर की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "आपके लिंग की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "आपके जन्म के वर्ष की आवश्यकता की है" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "आपके डाक पते की आवश्यकता है" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "आपके लक्ष्यों का विवरण आवश्यक है" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "एक शहर का होना आवश्यक है" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "एक देश का होना आवश्यक है" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "मान्य ई-मेल की आवश्यकता है।" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"उपयोगकर्ता नाम केवल A-Z और 0-9 से मिलकर बना होना चाहिए, बिना किसी रिक्त " -"स्थान के।" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "पासवर्ड:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "सक्रियण ई-मेल नहीं भेजा जा सका है।" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -604,7 +585,7 @@ msgstr "" msgid "Name required" msgstr "नाम आवश्यक है" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "अवैध आईडी" @@ -1038,7 +1019,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "जवाब नहीं दिया हुआ" @@ -1051,7 +1032,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1094,7 +1075,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1102,7 +1083,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1141,13 +1122,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1179,17 +1158,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "इस समस्या के लिए स्टाफ़ के जवाब में कुछ गड़बड़ थी।" @@ -1233,7 +1210,6 @@ msgstr "इस समस्या के लिए स्टाफ़ के ज #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1393,7 +1369,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1425,7 +1400,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1475,7 +1449,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1504,7 +1477,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1648,8 +1620,6 @@ msgstr "अगर यह त्रुटि बनी रहती है, त #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "समस्या बंद कर दी गई है।" @@ -2172,12 +2142,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2296,9 +2260,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2535,7 +2496,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "के बारे में" @@ -2611,8 +2571,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3191,7 +3149,7 @@ msgid "Wiki" msgstr "विकी" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3443,7 +3401,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3590,7 +3547,6 @@ msgstr "प्रशिक्षक मूल्यांकन" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "AI मूल्यांकन " @@ -3645,7 +3601,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "ग्रेडर से फ़ीडबैक लेने में त्रुटि हो रही है।" @@ -3684,7 +3639,6 @@ msgstr "हो रहा है" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "पूरा हो गया" @@ -3989,19 +3943,15 @@ msgstr "खोजें" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "सर्वाधिकार" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "उपयोगकर्ता नाम" @@ -4108,6 +4058,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "त्रुटि: चलाने योग्य वीडियो स्रोत नहीं मिले!" @@ -4160,7 +4126,6 @@ msgstr "निर्दिष्ट शाखा पर स्विच कर #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4219,7 +4184,7 @@ msgstr "पासवर्ड निश्चित कर दिया गय msgid "All ok!" msgstr "सब ठीक है!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "उपयोगकर्ता का नाम देना अनिवार्य है" @@ -4285,8 +4250,7 @@ msgstr "उपयोगकर्ताओं की कुल संख्या msgid "Courses loaded in the modulestore" msgstr "पाठ्यक्रमों को मॉड्यूल स्टोर में लोड कर दिया गया" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html #, fuzzy msgid "username" msgstr "" @@ -4295,7 +4259,7 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "उपयोगकर्तानाम" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "ई-मेल" @@ -4367,7 +4331,7 @@ msgstr "सफलतापूर्वक शाखा का बदलाव: { msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "पाठ्यक्रम का नाम" @@ -4401,7 +4365,7 @@ msgstr "त्रुटि - {0}
{1}
आईडी के साथ msgid "Deleted" msgstr "नष्ट कर दिया गया" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "पाठ्यक्रम_आईडी" @@ -4436,22 +4400,10 @@ msgid "" msgstr "" "निर्दिष्ट git भंडार को मॉड्यूल स्टोर और वैकल्पिक निर्देशिका में आयात करें" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "कड़ी फिर से खोलें" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "कड़ी बंद करे" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "शीर्षक खाली नहीं रह सकता" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "विषय वस्तु का होना ज़रूरी है" @@ -4460,7 +4412,6 @@ msgstr "विषय वस्तु का होना ज़रूरी ह msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "बहुत गहरा टिप्पणी स्तर" @@ -4562,12 +4513,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "ई-मेल" @@ -4686,18 +4634,14 @@ msgstr "छात्र {0} के लिए नियत तारीख {1} msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4728,7 +4672,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4839,7 +4782,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4906,8 +4848,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4961,7 +4903,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "देय तिथि बड़ा दी गई" @@ -5025,7 +4966,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "स्थिति की कोई जानकारी उपलब्ध नहीं है" @@ -5298,7 +5238,6 @@ msgstr "" "उन प्रस्तुतियों को देखे जो कि अनुपयुक्त के तौर पर छात्रों द्वारा चिह्नित की " "गई हैं। " -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "ग्रेड करने के लिए नई प्रस्तुतियां" @@ -5352,7 +5291,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5442,8 +5381,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5538,7 +5476,6 @@ msgstr "नक़द वापिस करने की तिथि" msgid "Amount of Refund" msgstr "वापिस की गई नक़द की राशि" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "सेवा शुल्क (यदि है तो)" @@ -5568,12 +5505,10 @@ msgstr "मुद्रा" msgid "Comments" msgstr "टिप्पणियां" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "विश्वविद्यालय" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "पाठ्यक्रम" @@ -5667,7 +5602,7 @@ msgstr "" msgid "Course added to cart." msgstr "पाठ्यक्रम कार्ट में डाल दिया गया है।" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5704,7 +5639,6 @@ msgstr "आपको इस पृष्ठ को देखने की अन msgid "The payment processor did not return a required parameter: {0}" msgstr "भुगतान प्रोसेसर ने आवश्यक मापदण्ड नहीं दिखाएं:{0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5862,7 +5796,6 @@ msgstr "" "खाते में अपर्याप्त राशि। इसको ठीक करने के लिए: भुगतान का किसी और रूप में " "पुन: प्रयास करें।" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "अज्ञात कारण" @@ -6249,7 +6182,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "तस्वीर लें" @@ -6355,7 +6287,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "आपका पासवर्ड रीसेट हो गया है" @@ -6555,7 +6486,6 @@ msgstr "लेख को नष्ट करें" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "नष्ट करें" @@ -6614,12 +6544,9 @@ msgstr "पूर्वावलोकन" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6644,10 +6571,7 @@ msgstr "विकी पूर्वावलोकन " #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "विंडोव ओपन" @@ -6688,7 +6612,7 @@ msgstr "स्वतः लॉग:" msgid "Change" msgstr "बदलें" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "चुना हुआ वर्तमान के साथ मिलाएं" @@ -6700,11 +6624,11 @@ msgstr "चयन किए हुए संस्करण में जाए msgid "Wiki Revision Preview" msgstr "विकी पुनरीक्षण पूर्वावलोकन" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr " इतिहास व्यू पर वापिस जाएं" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "इस संस्करण में जाएं" @@ -6729,7 +6653,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "इस के बाद, मैन्युअल समीक्षा करना ज़रूरी है।" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "नया जोड़ा गया संस्करण बनाएं" @@ -6972,30 +6896,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "पासवर्ड" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7060,8 +6974,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "ऑनर कोड" @@ -7070,23 +6982,19 @@ msgstr "ऑनर कोड" msgid "Terms of Service and Honor Code" msgstr "सेवा और ऑनर कोड की शर्तें" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "सेवा की शर्तें" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7198,7 +7106,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7229,7 +7136,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7437,8 +7348,7 @@ msgstr "यह पेज मौजूद नहीं है" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7450,13 +7360,8 @@ msgstr "" msgid "close" msgstr "बंद करें" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7476,7 +7381,7 @@ msgstr "ख़ारिज करें" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "सेटिंग्स" @@ -7485,13 +7390,11 @@ msgstr "सेटिंग्स" msgid "Error:" msgstr "त्रुटि:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "संगठन:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7506,10 +7409,8 @@ msgstr "पाठ्यक्रम" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "ई-मेल" @@ -7519,7 +7420,7 @@ msgstr "ई-मेल" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "उदाहरण: username@domain.com" @@ -7551,14 +7452,13 @@ msgstr "उदाहरण: Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "सार्वजनिक यूज़र नाम" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "उदाहरण: JaneDoe" @@ -7572,7 +7472,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "ब्योरा" @@ -7601,13 +7501,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "निजता नीति" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "सहायता" @@ -7628,7 +7526,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7711,7 +7608,7 @@ msgstr "नया" msgid "Dashboard" msgstr "डैशबोर्ड" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "बदलें" @@ -7755,7 +7652,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "पासवर्ड रीसेट" @@ -7763,7 +7660,7 @@ msgstr "पासवर्ड रीसेट" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7799,7 +7696,7 @@ msgstr "" "{email} पर ई-मेल भेज दी गई है। ई-मेल में जो लिंक दिया गया है उस पर जाकर " "पासवर्ड रीसेट करें।" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "ई-मेल बदलें" @@ -7852,15 +7749,6 @@ msgstr "मेरा नाम बदलें" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "दाखिला रद्द करें" @@ -7925,7 +7813,7 @@ msgstr "नामंज़ूर कर दिए गए छात्र:" msgid "Debug: " msgstr "डीबग करें:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "बाहरी प्रमाणीकरण विफल" @@ -7962,7 +7850,7 @@ msgstr "प्रस्तुत कर दिया गया" msgid "Puzzle Leaderboard" msgstr "पहेली का leaderboard" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8005,13 +7893,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "संपर्क करें" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "अक़्सर पूछे गए सवाल" @@ -8033,31 +7919,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8074,7 +7960,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "नौकरियां" @@ -8090,7 +7975,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "पासवर्ड रीसेट करें" @@ -8121,7 +8005,7 @@ msgstr "अपना पासवर्ड रीसेट करें" msgid "Email is incorrect." msgstr "ई-मेल ग़लत है।" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} सहायता" @@ -8193,8 +8077,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8340,7 +8222,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "उपयोगी जानकारी" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "OpenID से लॉग इन करें" @@ -8534,7 +8416,7 @@ msgstr "रौ डेटा:" msgid "Accepted" msgstr "स्वीकार किया गया" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "त्रुटि" @@ -8555,17 +8437,15 @@ msgstr "पुष्टि करें" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "यह कैसे काम करता है" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "पाठ्यक्रम ढूंढें" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8585,13 +8465,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "रजिस्टर करें" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8609,7 +8487,7 @@ msgstr "ग्लोबल नैविगेशन" msgid "Schools" msgstr "विश्वविद्यालय" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "पंजीकरण करें" @@ -8675,7 +8553,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "आपके रजिस्ट्रेशन को प्रोसेस करते समय ये त्रुटियां हुईः" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8688,7 +8565,6 @@ msgid "Enter a public username:" msgstr "एक सार्वजनिक यूज़र नाम दर्ज करें:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "जिन भी चर्चाओं या मंचों में आप भाग लेंगे उनमें दिखाया जाएगा" @@ -8824,11 +8700,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "खाता खोलने के लिए कृपया नीचे दिए गए ख़ाने भरें। " -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "जो भी प्रमाण पत्र आप अर्जित करते हैं उनके लिए आवश्यक है" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "बाद में बदला नहीं जा सकता" @@ -8881,12 +8757,12 @@ msgstr "" "आपने {platform_name} से मंच सूचना ईमेलों को पुनः सक्षम किया है। अपने " "डैशबोर्ड पर लौटने के लिए {dashboard_link_start}यहां{link_end}दबाएं। " -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "पिछला" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "अगला" @@ -8895,15 +8771,15 @@ msgstr "अगला" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "उदाहरण yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "उदाहरण yourname (मंचों पर दिखाया जाएगा)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "उदाहरण: आपका ऩाम (प्रमाण पत्रों के लिए)" @@ -9004,7 +8880,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "छात्र की प्रस्तुति को फिर से स्कोर करें" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "मॉड्यूल फ़ील्ड्स" @@ -9060,7 +8936,6 @@ msgstr "स्टाफ़िंग और नामांकन " #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "गिट लॉग" @@ -9140,6 +9015,18 @@ msgstr " साइट से पाठ्यक्रम को हटाएं" msgid "Platform Version" msgstr "प्लेटफ़ॉर्म संस्करण" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9154,6 +9041,11 @@ msgstr "तारीख़" msgid "Git Action" msgstr "git एक्शन" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9306,7 +9198,7 @@ msgstr "प्रतिलिपि की शुरूआत में जा msgid "Download video" msgstr "वीडियो को डाउनलोड करें" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "प्रतिलिपि डाउनलोड करें" @@ -9322,7 +9214,6 @@ msgstr "आपके शब्द:" msgid "Total number of words:" msgstr "कुल शब्द:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "कैलक्यूलेटर खोलें" @@ -9670,8 +9561,6 @@ msgstr "{chapter}, मौजूदा अध्याय" msgid "due {date}" msgstr "अंतिम तारीख़ {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9733,12 +9622,10 @@ msgstr "संक्षिप्त विवरण" msgid "Share with friends and family!" msgstr "दोस्तों और परिवार वालों के साथ बांटें!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9792,6 +9679,17 @@ msgstr "" msgid "Additional Resources" msgstr "अतिरिक्त संसाधन" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "दाखिला दें" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9868,7 +9766,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9904,11 +9802,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "पाठ्यक्रम अपडेट और समाचार " -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "है्न्डआउट नैविगेशन" @@ -9916,7 +9814,6 @@ msgstr "है्न्डआउट नैविगेशन" msgid "Course Handouts" msgstr "पाठ्यक्रम हैंडआउट्स" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9970,7 +9867,6 @@ msgstr "समूहों का प्रबंधन करें" msgid "Grade Downloads" msgstr "ग्रेड यहां से डाउनलोड करें" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10003,7 +9899,6 @@ msgstr "" "इस क्रिया का ठीक से काम करने के लिए इस पाठ्यक्रम के लिए परिभाषित कार्यों का " "ग्रेडबुक में संग्रहित कार्यों से मेल खाना ज़रूरी है!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "ग्रेडबुक का नाम:" @@ -10017,7 +9912,6 @@ msgstr " असाइनमेंट का नाम:" msgid "Course-specific grade adjustment" msgstr "किसी विशेष पाठ्यक्रम से संबंधित ग्रेड एडजस्टमैंट" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10052,7 +9946,6 @@ msgstr "नामांकन डेटा" msgid "Pull enrollment from remote gradebook" msgstr "दूरस्थ ग्रेडबुक से नामांकन खींचें" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "धारा:" @@ -10097,7 +9990,6 @@ msgstr "दिन" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "छात्र" @@ -10190,7 +10082,6 @@ msgstr "अवधि (sec)" msgid "Task Progress" msgstr "कार्य प्रगति" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "अज्ञात" @@ -10277,7 +10168,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "छात्र '{username}' ({email}) की पाठ्यक्रम प्रगति" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10359,7 +10260,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "आपका {cert_name_short} तैयार हो रहा है " -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "यह लिंक एक पीडीएफ दस्तावेज़ खोलेगा/ डाउनलोड करेगा" @@ -10368,24 +10268,6 @@ msgstr "यह लिंक एक पीडीएफ दस्तावेज msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"जब आपका {cert_name_long} बना तो हमारे पास आपकी कोई भी मान्य फ़ोटो नहीं थी और" -" इसीलिए हम आपको एक वेरीफ़ाइड {cert_name_short} नहीं दे सकें। इसके बजाय हमने " -"आपको एक ऑनर कोड {cert_name_short} प्रदान किया है।" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "अपना {cert_name_short} (PDF) डाउनलोड करें" @@ -10406,11 +10288,28 @@ msgstr "अपना {cert_name_short} (PDF) डाउनलोड करें" msgid "Complete our course feedback survey" msgstr "हमारे कोर्स का प्रतिक्रिया सर्वेक्षण पूरा करें" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"जब आपका {cert_name_long} बना तो हमारे पास आपकी कोई भी मान्य फ़ोटो नहीं थी और" +" इसीलिए हम आपको एक वेरीफ़ाइड {cert_name_short} नहीं दे सकें। इसके बजाय हमने " +"आपको एक ऑनर कोड {cert_name_short} प्रदान किया है।" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} कवर इमेज" @@ -10419,11 +10318,6 @@ msgstr "{course_number} {course_name} कवर इमेज" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr ": के रूप में नामांकन" @@ -10444,7 +10338,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10454,7 +10347,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10513,7 +10405,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10571,44 +10462,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "संग्रहित कोर्स देखें " -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "पाठयक्रम देखें" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "ई-मेल सेटिंग्स" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10624,7 +10504,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: {date} तक उनकी पुन: पुष्टि करें " -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "अधिसूचना क्रियाएं" @@ -10671,7 +10550,6 @@ msgstr "अस्वीकृत किया गया:" msgid "Approved:" msgstr "स्वीकार कर लिया गया है:" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "आईडी वैरीफीकेशन स्थिति" @@ -10873,9 +10751,7 @@ msgstr "पोस्ट में संशोधन हो रहा है" msgid "Edit post title" msgstr "पोस्ट शीर्षक को बदलें " -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "शीर्षक" @@ -10887,7 +10763,6 @@ msgstr "पोस्ट अपडेट करें" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "टिप्पणी जोड़ें" @@ -10908,7 +10783,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11077,7 +10951,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11096,7 +10969,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11210,7 +11082,6 @@ msgstr "" msgid "User Profile" msgstr "उपयोगकर्ता की प्रोफ़ाइल" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "…" @@ -11946,8 +11817,6 @@ msgstr "" msgid "Skip" msgstr "आगे बढ़ें" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12007,12 +11876,10 @@ msgstr "पाठ्यक्रम का प्रदर्शित नाम msgid "Has the course started?" msgstr "क्या पाठ्यक्रम शुरू हो गया है?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "हां" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "नहीं" @@ -12153,7 +12020,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12301,7 +12167,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12366,7 +12231,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12400,24 +12264,16 @@ msgstr "" "तारीख को कोई पहले की तारीख़ नहीं दे सकते हैं।" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "यहां छात्र का {platform_name} ई-मेल पता या यूज़र नाम दर्ज करें:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "छात्र ई-मेल या उपयोगकर्ता नाम" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "ग्रेडेड यूनिट को चुनें: " @@ -12492,7 +12348,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12610,7 +12465,6 @@ msgstr "समस्या सूची लोड हो रही है..." msgid "Gender Distribution" msgstr "लिंग वितरण" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "प्रशिक्षक डैशबोर्ड" @@ -12623,7 +12477,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "बैच दाखिला" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12637,12 +12490,10 @@ msgstr "" "बाउंस अथवा वापिस आई हुई ई-मेल की सूचना नहीं दी जायेगी, कृपया वर्तनी की दोहरी" " जांच कर लें। " -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "खुद-ब-खुद दाखिला " @@ -12669,12 +12520,10 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "उपयोगकर्ताओं को ई-मेल से इत्तला करें" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -12683,10 +12532,6 @@ msgstr "" "अगर इस विकल्प चुना गया है , तो उपयोगकर्ताओं को ईमेल सूचना प्राप्त " "होगी!" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "दाखिला दें" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12900,7 +12745,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12935,12 +12779,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "ई-मेल भेजें" @@ -12953,12 +12795,10 @@ msgstr ": को भेजें" msgid "Myself" msgstr "अपने आप" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "स्टाफ़ और प्रशिक्षक" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "सभी (छात्र, स्टाफ़ और प्रशिक्षक)" @@ -13051,7 +12891,6 @@ msgstr "" msgid "Show Email Task History" msgstr "ई-मेल टास्क हिस्टरी दिखाएं" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13090,19 +12929,16 @@ msgstr "छात्र प्रगति पृष्ठ" msgid "Student-specific grade adjustment" msgstr "विद्यार्थी-विशिष्ट ग्रेड एडजस्टमैंट" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13485,7 +13321,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13507,7 +13342,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13696,15 +13530,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13811,7 +13640,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13837,19 +13665,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13910,12 +13735,10 @@ msgstr "" " जाता लेकिन यहां इसलिए छोड़ा गया है ताकि अगर ज़रूरत पड़े तो Open edX इस पेज " "का उपयोग कर सकें।" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13928,14 +13751,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "मीडिया किट" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "प्रेस में" @@ -14219,7 +14039,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14229,19 +14048,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "फिर से लें " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "अच्छी लग रही है" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "सफ़ल फ़ोटो लेने के सुझाव" @@ -14262,7 +14078,6 @@ msgstr "क्या हम ली गई तस्वीर का आपका #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "एक बार पोजिशन में आने पर, कैमरे के बटन का उपयोग करें" @@ -14273,19 +14088,16 @@ msgstr "अपनी तस्वीर खींचने के लिए" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "काटे के निशान के बटन का उपयोग करें" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "एक बार जब आप फोटो से खुश हो" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "आम पूछे गये सवाल" @@ -14305,7 +14117,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "आप इस तस्वीर के साथ क्या करते हैं?" @@ -14388,7 +14199,6 @@ msgstr "अपनी अन्य पुनः वैरीफ़िकेशन #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "वहां पर लौटें जहां पर आपनें छोड़ दिया था" @@ -14405,15 +14215,10 @@ msgid "You currently need to re-verify for the following courses:" msgstr "" "इस वक़्त आपको इन पाठ्यक्रमों के लिए फिर से वैरीफ़ाई करने की आवश्यकता हैः" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "{date} तक पुन: वैरीफ़ाई करें" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14675,7 +14480,6 @@ msgstr "" "कृपया फ़ोटोएं ठीक से जांच लें और ध्यान से देख लें कि वे नीचे दी गई सारी " "आवश्यकताओं को पूरा करती हैं।" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "ऊपर दी गई तस्वीर को नीचे दी गई आवश्यकताओं को पूरा करने की जरूरत है:" @@ -14688,7 +14492,6 @@ msgstr "चेहरा स्पष्ट रूप से दिखाएं" msgid "Show your whole face" msgstr "अपना पूरा चेहरा दिखाएं" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "आपके आईडी की फोटो का आपके चेहरे की फ़ोटो से मेल खाना ज़रूरी हैं" @@ -14753,7 +14556,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "अपने डैशबोर्ड पर लौटें" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "पुन: वैरीफ़िकेशन विफल" @@ -14771,9 +14573,6 @@ msgid "Please contact support if you believe this message to be in error." msgstr "" "अगर आपको लगता है की यह संदेश त्रुटि में है तो कृपया सहायता से संपर्क करें।" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(active){span_end}" @@ -14874,8 +14673,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14895,8 +14693,7 @@ msgstr "विषय-वस्तु" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14966,7 +14763,7 @@ msgstr "आपकी फाइल तो नष्ट कर दिया गय msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -15001,7 +14798,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -15014,7 +14810,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -15137,7 +14933,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -15147,7 +14943,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -15157,8 +14952,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15233,7 +15026,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -15248,7 +15041,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15303,7 +15095,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15362,8 +15154,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15382,11 +15174,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15450,7 +15242,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "मोडल बंद करें" @@ -15492,7 +15283,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "निर्यात पाठ्यक्रम" @@ -15620,8 +15411,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15665,13 +15455,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15694,10 +15482,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15746,8 +15539,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15769,7 +15562,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15814,7 +15607,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15856,7 +15648,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15957,7 +15749,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -16088,8 +15880,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -16105,7 +15896,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -16144,7 +15935,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -16154,7 +15945,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -16185,7 +15976,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16215,7 +16006,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16260,7 +16051,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16281,7 +16072,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16289,7 +16080,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16301,7 +16092,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16353,7 +16144,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16361,7 +16152,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16421,7 +16212,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16475,7 +16266,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16528,13 +16319,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16773,7 +16562,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16832,8 +16620,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16916,7 +16703,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -17142,7 +16928,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -17194,8 +16979,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17375,7 +17159,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17415,7 +17199,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17435,12 +17219,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17465,7 +17247,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17481,7 +17263,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17530,11 +17312,11 @@ msgstr "" "यह केवल आपके लेख का प्रारंभिक अंश है। इसे बनाने के बाद आप अधिक विकसित " "विशेषताएं जैसे प्लगइन, मेटाडेटा और संबंधित लोखों इत्यादि को जोड़ सकते हैं।" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "विषय-वस्तु" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "सारांश" @@ -17918,11 +17700,11 @@ msgstr "संलग्लक संशोधन" msgid "%s was successfully added." msgstr "%s को सफ़लता पूर्वक जोड़ा गया" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "आपकी फ़ाइल सुरक्षित नहीं की जा सकी: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.mo b/conf/locale/hi/LC_MESSAGES/djangojs.mo index b48ec1b7df..8ae3ef6943 100644 Binary files a/conf/locale/hi/LC_MESSAGES/djangojs.mo and b/conf/locale/hi/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.po b/conf/locale/hi/LC_MESSAGES/djangojs.po index b19d702cc9..b3fcf16cb8 100644 --- a/conf/locale/hi/LC_MESSAGES/djangojs.po +++ b/conf/locale/hi/LC_MESSAGES/djangojs.po @@ -44,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -87,8 +86,6 @@ msgstr "यह लिंक एक नए ब्राउज़र विंडो #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -96,17 +93,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -197,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s संभव अंक)" msgstr[1] "(%(num_points)s संभव अंक)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -205,7 +198,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "जवाब छिपाएं" @@ -226,7 +218,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "जवाब नहीं दिया हुआ" @@ -245,7 +236,6 @@ msgstr "आपको सबमिट करने से पहले एक र #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "आपको जो स्कोर मिला वह आगे जाने के लिए काफ़ी नहीं है।" @@ -320,11 +310,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "प्रश्न दिखाएं " -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "प्रश्न छिपाएं" @@ -332,7 +320,6 @@ msgstr "प्रश्न छिपाएं" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -343,21 +330,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1226,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1240,7 +1223,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1577,18 +1559,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1706,7 +1684,6 @@ msgstr "एच डी चलाएं" msgid "HD off" msgstr "एच डी बंद" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "विडियो स्थिति" @@ -1753,7 +1730,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr " चर्चा छिपाएं" @@ -1763,13 +1739,9 @@ msgid "Show Discussion" msgstr " चर्चा दिखाएं" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1805,8 +1777,6 @@ msgstr "" "हमें आपके अनुरोध को लागू करने में कुछ मुश्किल हुई। कृपया फिर से कोशिश करें।" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2108,12 +2078,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2154,7 +2122,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2163,32 +2130,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2291,7 +2252,6 @@ msgstr "उपयोगकर्ता नाम" msgid "Email" msgstr "ई-मेल" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2304,7 +2264,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "कृपया उपयोगकर्ता नाम या ई-मेल पता दर्ज करें।" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "उपयोगकर्ता की अनुमतियों को बदलने में त्रुटि।" @@ -2506,7 +2465,6 @@ msgstr "" msgid "Error sending email." msgstr "ई-मेल नहीं भेजा जा सका।" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "इस पाठ्यक्रम का कोई ई-मेल इतिहास नहीं है।" @@ -2520,10 +2478,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "कृपया छात्र का ई-मेल पता या उपयोगकर्ता नाम दर्ज करें।" @@ -2534,12 +2488,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2805,7 +2753,6 @@ msgstr "सिस्टम अमान्य स्थिति में च msgid "System got into invalid state for submission: " msgstr "सिस्टम जमा करने के लिए अमान्य स्थिति में है:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(छिपाएं)" @@ -2899,7 +2846,7 @@ msgstr "इमेज का वर्णन दें" msgid "enter link description here" msgstr "लिंक का वर्णन यहां दें" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "यहां कोड डालें" @@ -2969,6 +2916,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2990,7 +2941,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2998,7 +2949,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3171,6 +3122,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3217,18 +3176,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3237,7 +3184,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "डेटा पुनः प्राप्त करने में असमर्थ है, कृपया फिर से कोशिश करें" @@ -3276,7 +3222,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "स्टूडियो को आपके काम को बचाने में परेशानी हो रही है|" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3287,7 +3233,6 @@ msgstr "स्टूडियो को आपके काम को बचा #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "सेव हो रहा है" @@ -3386,8 +3331,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3607,7 +3552,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "मुहलत की अवधि का प्रारूप HH:MM होना चाहिए." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3666,8 +3610,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3708,18 +3681,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3728,11 +3689,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3807,8 +3763,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3917,7 +3872,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3956,7 +3910,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3984,7 +3937,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4103,14 +4055,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4220,7 +4167,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4388,7 +4334,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4446,6 +4391,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4617,6 +4566,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4895,7 +4852,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4963,6 +4919,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4973,10 +4943,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5002,12 +4980,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5107,7 +5083,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5178,10 +5153,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5314,7 +5285,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5393,7 +5363,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5447,7 +5416,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5567,15 +5535,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5585,11 +5547,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5605,7 +5564,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5630,8 +5588,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5658,8 +5614,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/hr/LC_MESSAGES/django.mo b/conf/locale/hr/LC_MESSAGES/django.mo index 4d8d23acec..b51dd6a5f2 100644 Binary files a/conf/locale/hr/LC_MESSAGES/django.mo and b/conf/locale/hr/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hr/LC_MESSAGES/django.po b/conf/locale/hr/LC_MESSAGES/django.po index 909b6e1988..a715a1e68f 100644 --- a/conf/locale/hr/LC_MESSAGES/django.po +++ b/conf/locale/hr/LC_MESSAGES/django.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-31 12:21+0000\n" "Last-Translator: Taarna\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/edx-platform/language/hr/)\n" @@ -76,7 +76,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -84,7 +84,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -96,7 +95,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -123,15 +121,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -225,6 +219,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -245,7 +315,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -302,6 +372,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -412,102 +489,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -570,7 +551,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1005,7 +986,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1018,7 +999,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1057,7 +1038,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1065,7 +1046,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1104,13 +1085,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1142,17 +1121,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1195,7 +1172,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1351,7 +1327,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1383,7 +1358,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1435,7 +1409,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1464,7 +1437,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1605,8 +1577,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2123,12 +2093,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2247,9 +2211,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2487,7 +2448,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2563,8 +2523,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3145,7 +3103,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3397,7 +3355,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3540,7 +3497,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3588,7 +3544,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3626,7 +3581,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3923,19 +3877,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4044,6 +3994,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4092,7 +4058,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4152,7 +4117,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4217,12 +4182,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4285,9 +4249,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4321,7 +4284,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4355,22 +4318,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4379,7 +4330,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4480,12 +4430,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4599,18 +4546,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4641,7 +4584,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4755,7 +4697,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4822,8 +4763,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4877,7 +4818,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4936,7 +4876,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5185,7 +5124,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5235,7 +5173,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5325,8 +5263,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5422,7 +5359,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5452,14 +5388,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5552,7 +5485,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5589,7 +5522,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5719,7 +5651,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6066,7 +5997,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6172,7 +6102,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6354,7 +6283,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6407,12 +6335,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6432,10 +6357,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6472,7 +6394,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6484,11 +6406,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6510,7 +6432,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6738,12 +6660,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6753,21 +6672,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6845,8 +6756,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6858,12 +6767,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6873,11 +6780,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6989,7 +6894,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7019,7 +6923,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7235,8 +7143,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7248,13 +7155,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7274,7 +7176,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7283,13 +7185,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7304,10 +7204,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7317,7 +7215,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7349,14 +7247,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7370,7 +7267,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7397,13 +7294,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7424,7 +7319,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7507,7 +7401,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7551,7 +7445,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7559,7 +7453,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7593,7 +7487,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7644,15 +7538,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7716,7 +7601,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7753,7 +7638,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7796,13 +7681,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7824,31 +7707,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7865,7 +7748,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7881,7 +7763,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7908,7 +7789,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7968,8 +7849,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8107,7 +7986,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8288,7 +8167,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8309,17 +8188,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8339,13 +8216,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8363,7 +8238,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8428,7 +8303,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8439,7 +8313,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8560,11 +8433,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8615,12 +8488,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8629,15 +8502,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8738,7 +8611,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8794,7 +8667,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8872,6 +8744,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8886,6 +8770,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9023,7 +8912,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9039,7 +8928,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9380,8 +9268,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9439,12 +9325,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9498,6 +9382,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9574,7 +9469,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9610,11 +9505,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9622,7 +9517,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9676,7 +9570,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9707,7 +9600,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9721,7 +9613,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9756,7 +9647,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9801,7 +9691,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9892,7 +9781,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9979,7 +9867,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10045,7 +9943,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10054,21 +9951,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10087,11 +9969,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10100,11 +9996,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10125,7 +10016,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10135,7 +10025,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10195,7 +10084,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10249,44 +10137,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10302,7 +10179,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10344,7 +10220,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10542,9 +10417,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10556,7 +10429,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10577,7 +10449,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10742,7 +10613,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10761,7 +10631,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10876,7 +10745,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11600,8 +11468,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11661,12 +11527,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11804,7 +11668,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11952,7 +11815,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12017,7 +11879,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12047,24 +11908,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12132,7 +11985,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12246,7 +12098,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12259,7 +12110,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12271,12 +12121,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12298,22 +12146,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12495,7 +12337,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12530,12 +12371,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12548,12 +12387,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12634,7 +12471,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12673,19 +12509,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13027,7 +12860,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13049,7 +12881,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13235,15 +13066,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13350,7 +13176,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13376,19 +13201,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13443,12 +13265,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13461,14 +13281,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13740,7 +13557,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13748,19 +13564,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13781,7 +13594,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13792,19 +13604,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13822,7 +13631,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13895,7 +13703,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13911,15 +13718,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14143,7 +13945,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14156,7 +13957,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14212,7 +14012,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14227,9 +14026,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14330,8 +14126,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14351,8 +14146,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14422,7 +14216,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14457,7 +14251,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14470,7 +14263,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14593,7 +14386,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14603,7 +14396,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14613,8 +14405,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14689,7 +14479,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14704,7 +14494,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14759,7 +14548,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14818,8 +14607,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14838,11 +14627,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14906,7 +14695,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14948,7 +14736,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15076,8 +14864,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15121,13 +14908,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15150,10 +14935,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15202,8 +14992,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15225,7 +15015,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15270,7 +15060,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15312,7 +15101,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15413,7 +15202,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15544,8 +15333,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15561,7 +15349,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15600,7 +15388,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15610,7 +15398,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15641,7 +15429,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15671,7 +15459,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15716,7 +15504,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15737,7 +15525,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15745,7 +15533,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15757,7 +15545,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15809,7 +15597,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15817,7 +15605,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15877,7 +15665,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15931,7 +15719,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15984,13 +15772,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16229,7 +16015,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16288,8 +16073,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16372,7 +16156,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16598,7 +16381,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16650,8 +16432,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16831,7 +16612,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16871,7 +16652,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16891,12 +16672,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16921,7 +16700,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16937,7 +16716,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16984,11 +16763,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17342,11 +17121,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/hr/LC_MESSAGES/djangojs.mo b/conf/locale/hr/LC_MESSAGES/djangojs.mo index 38f027b972..d5d48eb746 100644 Binary files a/conf/locale/hr/LC_MESSAGES/djangojs.mo and b/conf/locale/hr/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hr/LC_MESSAGES/djangojs.po b/conf/locale/hr/LC_MESSAGES/djangojs.po index 95d0c3a1d3..5770c383c2 100644 --- a/conf/locale/hr/LC_MESSAGES/djangojs.po +++ b/conf/locale/hr/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/edx-platform/language/hr/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -86,8 +85,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -95,17 +92,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -200,7 +194,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -208,7 +201,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -229,7 +221,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -248,7 +239,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -312,11 +302,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -324,7 +312,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -335,21 +322,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1220,7 +1204,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1234,7 +1217,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1571,18 +1553,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1700,7 +1678,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1750,7 +1727,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1760,13 +1736,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1796,8 +1768,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2110,12 +2080,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2157,7 +2125,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2166,32 +2133,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2292,7 +2253,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2305,7 +2265,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2493,7 +2452,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2506,10 +2464,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2520,12 +2474,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2779,7 +2727,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2873,7 +2820,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2943,6 +2890,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2964,7 +2915,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2972,7 +2923,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3150,6 +3101,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3196,18 +3155,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3216,7 +3163,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3256,7 +3202,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3267,7 +3213,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3366,8 +3311,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3576,7 +3521,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3634,8 +3578,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3677,19 +3651,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3698,11 +3659,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3777,8 +3733,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3883,7 +3838,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3922,7 +3876,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3950,7 +3903,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4065,14 +4017,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4183,7 +4130,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4351,7 +4297,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4409,6 +4354,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4580,6 +4529,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4858,7 +4815,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4926,6 +4882,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4936,10 +4906,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4965,12 +4943,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5070,7 +5046,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5141,10 +5116,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5277,7 +5248,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5356,7 +5326,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5410,7 +5379,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5530,15 +5498,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5548,11 +5510,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5568,7 +5527,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5593,8 +5551,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5621,8 +5577,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/hu/LC_MESSAGES/django.mo b/conf/locale/hu/LC_MESSAGES/django.mo index aa5e5eaa8f..6ff6efa1f2 100644 Binary files a/conf/locale/hu/LC_MESSAGES/django.mo and b/conf/locale/hu/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hu/LC_MESSAGES/django.po b/conf/locale/hu/LC_MESSAGES/django.po index 5ab970a588..ccbee5fca0 100644 --- a/conf/locale/hu/LC_MESSAGES/django.po +++ b/conf/locale/hu/LC_MESSAGES/django.po @@ -54,7 +54,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Keleti László \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/edx-platform/language/hu/)\n" @@ -85,7 +85,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -93,7 +93,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -105,7 +104,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -132,15 +130,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -234,6 +228,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -254,7 +324,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -311,6 +381,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -421,102 +498,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -577,7 +558,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1011,7 +992,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1024,7 +1005,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1063,7 +1044,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1071,7 +1052,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1110,13 +1091,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1148,17 +1127,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1201,7 +1178,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1357,7 +1333,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1389,7 +1364,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1441,7 +1415,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1470,7 +1443,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1611,8 +1583,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2129,12 +2099,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2253,9 +2217,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2493,7 +2454,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2569,8 +2529,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3149,7 +3107,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3401,7 +3359,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3544,7 +3501,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3592,7 +3548,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3630,7 +3585,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3927,19 +3881,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4047,6 +3997,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4095,7 +4061,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4155,7 +4120,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4220,12 +4185,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4288,9 +4252,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4324,7 +4287,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4358,22 +4321,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4382,7 +4333,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4483,12 +4433,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4602,18 +4549,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4644,7 +4587,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4756,7 +4698,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4823,8 +4764,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4878,7 +4819,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4937,7 +4877,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5186,7 +5125,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5236,7 +5174,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5326,8 +5264,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5423,7 +5360,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5453,14 +5389,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5553,7 +5486,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5590,7 +5523,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5720,7 +5652,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6067,7 +5998,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6173,7 +6103,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6355,7 +6284,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6408,12 +6336,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6433,10 +6358,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6473,7 +6395,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6485,11 +6407,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6511,7 +6433,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6739,12 +6661,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6754,21 +6673,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6846,8 +6757,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6859,12 +6768,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6874,11 +6781,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6990,7 +6895,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7020,7 +6924,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7236,8 +7144,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7249,13 +7156,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7275,7 +7177,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7284,13 +7186,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7305,10 +7205,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7318,7 +7216,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7350,14 +7248,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7371,7 +7268,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7398,13 +7295,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7425,7 +7320,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7508,7 +7402,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7552,7 +7446,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7560,7 +7454,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7594,7 +7488,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7645,15 +7539,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7717,7 +7602,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7754,7 +7639,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7797,13 +7682,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7825,31 +7708,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7866,7 +7749,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7882,7 +7764,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7909,7 +7790,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7969,8 +7850,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8107,7 +7986,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8288,7 +8167,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8309,17 +8188,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8339,13 +8216,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8363,7 +8238,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8428,7 +8303,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8439,7 +8313,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8560,11 +8433,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8615,12 +8488,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8629,15 +8502,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8738,7 +8611,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8794,7 +8667,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8872,6 +8744,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8886,6 +8770,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9023,7 +8912,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9039,7 +8928,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9378,8 +9266,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9437,12 +9323,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9496,6 +9380,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9572,7 +9467,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9608,11 +9503,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9620,7 +9515,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9674,7 +9568,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9705,7 +9598,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9719,7 +9611,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9754,7 +9645,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9799,7 +9689,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9890,7 +9779,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9977,7 +9865,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10043,7 +9941,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10052,21 +9949,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10085,11 +9967,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10098,11 +9994,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10123,7 +10014,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10133,7 +10023,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10192,7 +10081,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10246,44 +10134,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10299,7 +10176,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10341,7 +10217,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10539,9 +10414,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10553,7 +10426,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10574,7 +10446,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10739,7 +10610,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10758,7 +10628,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10871,7 +10740,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11595,8 +11463,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11656,12 +11522,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11799,7 +11663,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11947,7 +11810,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12012,7 +11874,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12042,24 +11903,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12127,7 +11980,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12241,7 +12093,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12254,7 +12105,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12266,12 +12116,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12293,22 +12141,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12490,7 +12332,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12525,12 +12366,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12543,12 +12382,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12629,7 +12466,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12668,19 +12504,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13022,7 +12855,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13044,7 +12876,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13229,15 +13060,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13344,7 +13170,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13370,19 +13195,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13437,12 +13259,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13455,14 +13275,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13734,7 +13551,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13742,19 +13558,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13775,7 +13588,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13786,19 +13598,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13816,7 +13625,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13889,7 +13697,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13905,15 +13712,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14137,7 +13939,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14150,7 +13951,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14206,7 +14006,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14221,9 +14020,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14324,8 +14120,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14345,8 +14140,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14416,7 +14210,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14451,7 +14245,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14464,7 +14257,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14587,7 +14380,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14597,7 +14390,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14607,8 +14399,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14683,7 +14473,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14698,7 +14488,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14753,7 +14542,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14812,8 +14601,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14832,11 +14621,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14900,7 +14689,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14942,7 +14730,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15070,8 +14858,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15115,13 +14902,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15144,10 +14929,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15196,8 +14986,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15219,7 +15009,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15264,7 +15054,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15306,7 +15095,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15407,7 +15196,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15538,8 +15327,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15555,7 +15343,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15594,7 +15382,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15604,7 +15392,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15635,7 +15423,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15665,7 +15453,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15710,7 +15498,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15731,7 +15519,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15739,7 +15527,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15751,7 +15539,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15803,7 +15591,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15811,7 +15599,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15871,7 +15659,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15925,7 +15713,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15978,13 +15766,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16223,7 +16009,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16282,8 +16067,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16366,7 +16150,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16592,7 +16375,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16644,8 +16426,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16825,7 +16606,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16865,7 +16646,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16885,12 +16666,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16931,7 +16710,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16978,11 +16757,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17336,11 +17115,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.mo b/conf/locale/hu/LC_MESSAGES/djangojs.mo index 5dbacd1ac2..d5016a4c64 100644 Binary files a/conf/locale/hu/LC_MESSAGES/djangojs.mo and b/conf/locale/hu/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.po b/conf/locale/hu/LC_MESSAGES/djangojs.po index 472d7f72f1..d2e54c0464 100644 --- a/conf/locale/hu/LC_MESSAGES/djangojs.po +++ b/conf/locale/hu/LC_MESSAGES/djangojs.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/edx-platform/language/hu/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -85,8 +84,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -94,17 +91,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -197,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -205,7 +198,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -226,7 +218,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -245,7 +236,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -309,11 +299,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -321,7 +309,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -332,21 +319,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1217,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1231,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1568,18 +1550,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1744,7 +1721,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1754,13 +1730,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1790,8 +1762,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2091,12 +2061,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2137,7 +2105,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2146,32 +2113,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2272,7 +2233,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2285,7 +2245,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2473,7 +2432,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2486,10 +2444,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2500,12 +2454,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2759,7 +2707,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2853,7 +2800,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2923,6 +2870,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2944,7 +2895,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2952,7 +2903,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3125,6 +3076,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3171,18 +3130,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3191,7 +3138,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3228,7 +3174,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3239,7 +3185,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3338,8 +3283,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3548,7 +3493,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3606,8 +3550,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3648,18 +3621,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3668,11 +3629,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3747,8 +3703,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3853,7 +3808,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3892,7 +3846,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3920,7 +3873,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4035,14 +3987,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4099,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4266,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4323,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4498,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4784,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4851,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4875,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4912,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5015,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5085,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5217,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5295,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5348,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5467,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5479,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5496,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5520,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5546,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.mo b/conf/locale/hy_AM/LC_MESSAGES/django.mo index 7d2c3e2616..78db3783ad 100644 Binary files a/conf/locale/hy_AM/LC_MESSAGES/django.mo and b/conf/locale/hy_AM/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.po b/conf/locale/hy_AM/LC_MESSAGES/django.po index d3a7551d23..2a6e7d6e38 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/django.po +++ b/conf/locale/hy_AM/LC_MESSAGES/django.po @@ -61,7 +61,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: emma_saroyan \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/edx-platform/language/hy_AM/)\n" @@ -89,14 +89,13 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Քննարկում" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Խնդիր" @@ -108,7 +107,6 @@ msgstr "Խորացված" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -135,15 +133,11 @@ msgstr "Ավարտված" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Անուն" @@ -235,6 +229,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Օգտագործողի անունը պետք է լինի ամենաքիչը երկու նիշ:" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Անհրաժեշտ է պատշաճ ձևավորված էլեկտրոնային հասցե:" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Անհրաժեշտ է թույլատրելի գաղտնաբառ:" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Ձեր օրինական անունը պետք է պարունակի ամենաքիչը երկու նիշ:" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Օգտագործողի անունը պետք է բաղկացած լինի A-Z տառերից, 0-9 թվանշաններից և " +"չպարունակի բացակներ։" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Դուք պետք է ընդունեք ծառայության պայմանները։" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Կրթություն մակարդակը պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Ձեր սեռը պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Ձեր ծննդյան տարին պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Ձեր էլեկտրոնային հասցեն պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Ձեր նպատակների նկարագիրը պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Քաղաքը պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Երկիրը պարտադիր է" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Ընդունվելու համար անհրաժեշտ է պահպանել պատվո նորմերը:" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Գաղտնաբառ:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -255,7 +327,7 @@ msgstr "Իգական" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Այլ" @@ -311,6 +383,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -425,104 +504,6 @@ msgstr "'{username}' օգտագործողի անունն արդեն գոյութ msgid "An account with the Email '{email}' already exists." msgstr "՛{email}' էլեկտրոնային հասցեով հաշիվ արդեն գոյություն ունի։" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Սխալ (401 {field}). Խնդրում ենք մեզ էլեկտրոնային նամակ ուղարկել։" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Ընդունվելու համար անհրաժեշտ է պահպանել պատվո նորմերը:" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Դուք պետք է ընդունեք ծառայության պայմանները։" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Օգտագործողի անունը պետք է լինի ամենաքիչը երկու նիշ:" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Անհրաժեշտ է պատշաճ ձևավորված էլեկտրոնային հասցե:" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Ձեր օրինական անունը պետք է պարունակի ամենաքիչը երկու նիշ:" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Անհրաժեշտ է թույլատրելի գաղտնաբառ:" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "՛Ընդունել ծառայությունների կանոններ՛-ը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "'Պատվի կոդ'-ին համաձայնվելը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Կրթություն մակարդակը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Ձեր սեռը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Ձեր ծննդյան տարին պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Ձեր էլեկտրոնային հասցեն պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Ձեր նպատակների նկարագիրը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Քաղաքը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Երկիրը պարտադիր է" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Պահանջվում է գործող էլեկտրոնային հասցե։" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Օգտագործողի անունը պետք է բաղկացած լինի A-Z տառերից, 0-9 թվանշաններից և " -"չպարունակի բացակներ։" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Գաղտնաբառ:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Չստացվեց ուղարկել ակտիվացման նամակը։" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -585,7 +566,7 @@ msgstr "" msgid "Name required" msgstr "Անունը պարտադիր է։" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Սխալ համար՝ ID:" @@ -1020,7 +1001,7 @@ msgstr "Սխալ է" msgid "incomplete" msgstr "Անավարտ է" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "Անպատասխան է" @@ -1033,7 +1014,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Պատասխանը ստացվել է:" @@ -1076,7 +1057,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1084,7 +1065,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1123,13 +1104,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1161,17 +1140,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Սխալ` անձնակազմի պատասխանի ժամանակ:" @@ -1216,7 +1193,6 @@ msgstr "Սխալ` անձնակազմի պատասխանի ժամանակ. դատ #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1377,7 +1353,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1409,7 +1384,6 @@ msgstr "Ծանոթագրություն" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1461,7 +1435,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Միշտ" @@ -1490,7 +1463,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Երբեք" @@ -1633,8 +1605,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Խնդիրը փակված է:" @@ -2161,12 +2131,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2288,9 +2252,6 @@ msgstr "" "մասին տեսանյութ, նկարագրություն, և այլն։ Գրե՛ք տեքստ, որն ուսանողները " "կկարդան դասընթացին գրանցվել որոշելուց առաջ։" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2529,7 +2490,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Մասին" @@ -2605,8 +2565,6 @@ msgstr "" msgid "Text" msgstr "Տեքստ" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3446,7 +3404,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3591,7 +3548,6 @@ msgstr "Դասախոսի գնահատում" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Համակարգչային գնահատում" @@ -3644,7 +3600,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Սխալ` ստուգողից պատասխանը ստանալու ժամանակ:" @@ -3683,7 +3638,6 @@ msgstr "Ընթացքի մեջ" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Վերջ" @@ -3990,19 +3944,15 @@ msgstr "Փնտրել" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Հեղինակային իրավունք" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Օգտագործողի անուն" @@ -4110,6 +4060,22 @@ msgstr " {username} անվամբ օգտատեր գոյություն չունի: msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ՍԽԱԼ` տեսանյութերի աղբյուր չգտնվեց:" @@ -4163,7 +4129,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4222,7 +4187,7 @@ msgstr "Ֆիքսված գաղտնաբառ:" msgid "All ok!" msgstr "Ամեն ինչ կարգին է:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Անհրաժեշտ է տրամադրել օգտագործողի անունը:" @@ -4287,12 +4252,11 @@ msgstr "Օգտատերերի ընդհանուր քանակը" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "Օգտագործողի անուն" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "էլ. փոստ" @@ -4363,7 +4327,7 @@ msgstr "Հաջողությամբ տարբերակը փոխվեց {branch_name}- msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "Դասընթացի անվանումը" @@ -4398,7 +4362,7 @@ msgstr "" msgid "Deleted" msgstr "Ջնջված է" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "Դասընթացի նույնականացման համարը" @@ -4434,22 +4398,10 @@ msgstr "" "Ներմուծե՛ք նշված git պահոցը և ոչ պարտադիր տարբերակը modulestore ու նշված ոչ" " պարտադիր թղթապանակ:" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Վերաբացել առանձնազրույցը" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Փակել առանձնազրույցը" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Վերնագիրը դատարկ լինել չի կարող" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Մարմինը դատարկ լինել չի կարող" @@ -4458,7 +4410,6 @@ msgstr "Մարմինը դատարկ լինել չի կարող" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Մեկնաբանության մակարդակը շատ խորն է" @@ -4561,12 +4512,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "էլ. փոստ" @@ -4688,18 +4636,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4730,7 +4674,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4841,7 +4784,6 @@ msgstr "Խնդրում ենք մուտքագրել հանձնարարությա msgid "Invalid assignment name '{name}'" msgstr "Հանձնարարության '{name}' անվանումն անվավեր է" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Արտաքին էլ. հասցե" @@ -4908,8 +4850,8 @@ msgstr "Նույնականացման համար (ID)" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html #, fuzzy @@ -4968,7 +4910,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Հանձնելու հետաձգված ամսաթիվ" @@ -5026,7 +4967,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Կարգավիճակի մասին տեղեկություն առկա չկա" @@ -5295,7 +5235,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "Տեսնել նյութերը, որոնք ուսանողները նշել են որպես անհամապատասխան:" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Նոր պատասխաններ գնահատման համար" @@ -5349,7 +5288,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5439,8 +5378,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5534,7 +5472,6 @@ msgstr "Հատուցման ամսաթիվ" msgid "Amount of Refund" msgstr "Ընդհանուր հատուցման չափ" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Սպասարկման վճարները (եթե այդպիսիք կան)" @@ -5564,12 +5501,10 @@ msgstr "Տարրադրամ" msgid "Comments" msgstr "Մեկնաբանություններ" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Համալսարան" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Դասընթաց" @@ -5665,7 +5600,7 @@ msgstr "" msgid "Course added to cart." msgstr "Դասընթացն ավելացվեց Ձեր զամբյուղին:" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5702,7 +5637,6 @@ msgstr "Ձեզ չի թույլատրվում դիտել այս էջը:" msgid "The payment processor did not return a required parameter: {0}" msgstr "Վճարման մշակումը չվերադարձրեց անհրաժեշտ պարամետրը` {0}:" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5853,7 +5787,6 @@ msgstr "" "Հաշվի վրա բավարար միջոցներ առկա չեն: Հնարավոր լուծում` փորձե՛ք վճարման այլ " "եղանակ:" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Անհայտ պատճառ:" @@ -6229,7 +6162,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "լուսանկարել" @@ -6335,7 +6267,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Ձեր գաղտնաբառի վերականգնումն ավարտված է" @@ -6540,7 +6471,6 @@ msgstr "Ջնջել հոդվածը" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Ջնջել" @@ -6597,12 +6527,9 @@ msgstr "Նախադիտում" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6622,10 +6549,7 @@ msgstr "Վիքի նախատեսք" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "պատուհանը բաց է" @@ -6666,7 +6590,7 @@ msgstr "Ավտոմատ գրանցամատյան" msgid "Change" msgstr "Փոխել" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Միացնել ընտրվածն ընթացիկի հետ..." @@ -6678,11 +6602,11 @@ msgstr "Անցնել ընտրված տարբերակին" msgid "Wiki Revision Preview" msgstr "Վիքի փոփոխության նախատեսք" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Վերադառնալ պատմության էջին" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Անցնել այս տարբերակին" @@ -6706,7 +6630,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Սրանից հետո կարևոր է անձամբ վերանայել" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Ստեղծել նոր միավորված տարբերակ" @@ -6948,30 +6872,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Գաղտնաբառ" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7037,8 +6951,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -7047,23 +6959,19 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "Օգտագործման պայմանները և պատվո կոդը" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Օգտագործման պայմանները" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Դասընթացի թարմացման սխալ ID" @@ -7198,7 +7106,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7231,7 +7138,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7445,8 +7356,7 @@ msgstr "էջը հայտնաբերված չէ" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7458,13 +7368,8 @@ msgstr "" msgid "close" msgstr "փակել" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7484,7 +7389,7 @@ msgstr "Բաց թողնել" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Կարգավորումներ" @@ -7493,13 +7398,11 @@ msgstr "Կարգավորումներ" msgid "Error:" msgstr "սխալ`" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Կառուցվածքը`" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7514,10 +7417,8 @@ msgstr "Դասընթացներ" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "Էլ. հասցե" @@ -7527,7 +7428,7 @@ msgstr "Էլ. հասցե" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "Օրինակ` username@domain.com" @@ -7559,14 +7460,13 @@ msgstr "օրինակ` Նարեկ Դշխունյան" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Բոլորին հասանելի օգտագործողի անուն" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "օրինակ` JaneDoe" @@ -7580,7 +7480,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "մանրամասներ" @@ -7608,13 +7508,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Գաղտնիության քաղաքականությունը" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html msgid "Help" msgstr "Օգնություն" @@ -7635,7 +7533,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7718,7 +7615,7 @@ msgstr "Նոր" msgid "Dashboard" msgstr "Ղեկավարման վահանակ" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "Խմբագրել" @@ -7762,7 +7659,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Փոխել գաղտնաբառը" @@ -7770,7 +7667,7 @@ msgstr "Փոխել գաղտնաբառը" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7806,7 +7703,7 @@ msgstr "" "Նամակ է ուղարկվել {email} էլ. հասցեին: Խնդրում ենք հետևել այդ նամակի մեջ " "եղած հղմանը Ձեր գաղտնաբառը փոխելու համար:" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Փոխել էլեկտրոնային հասցեն" @@ -7859,15 +7756,6 @@ msgstr "Փոխել իմ անունը" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7932,7 +7820,7 @@ msgstr "Մերժված ուսանողներ`" msgid "Debug: " msgstr "Կարգաբերում,մշակում`" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Արտաքին վավերացումը ձախողվեց" @@ -7969,7 +7857,7 @@ msgstr "Հանձնած" msgid "Puzzle Leaderboard" msgstr "Գլխավորողների ցուցակ հանելուկներում" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8012,13 +7900,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "շփում" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Հաճախ տրվող հարցեր" @@ -8040,31 +7926,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Meetup" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -8081,7 +7967,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Աշխատանքներ" @@ -8097,7 +7982,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Գաղնաբառի փոփոխում" @@ -8127,7 +8011,7 @@ msgstr "Փոխել իմ գաղտնաբառը" msgid "Email is incorrect." msgstr "Էլ. հասցեն սխալ է" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Օգնություն" @@ -8198,8 +8082,6 @@ msgstr "Ներառե՛ք սխալների հաղորդագրություններ #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8345,7 +8227,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Օգնող տեղեկատվություն" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Մուտք գործել OpenID-ի միջոցով։" @@ -8546,7 +8428,7 @@ msgstr "Չմշակված տվյալներ`" msgid "Accepted" msgstr "ընդունված" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Սխալ" @@ -8567,17 +8449,15 @@ msgstr "հաստատել" msgid "Reject" msgstr "Մերժել" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Ինչպես է սա աշխատում " -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Փնտրել դասընթացներ" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8597,13 +8477,11 @@ msgstr "" msgid "Shopping Cart" msgstr "Գնումների զամբյուղը" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Գրանցվել" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8623,7 +8501,7 @@ msgstr "Գլոբալ նավիգացիա" msgid "Schools" msgstr "Համալսարաններ" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Գրանցվեք հիմա" @@ -8696,7 +8574,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Տեղի ունեցան հետևյալ սխալները Ձեր գրանցման մշակման ընթացքում`" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8709,7 +8586,6 @@ msgid "Enter a public username:" msgstr "մուտքագրել օգտագործողի անունը" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" "Կերևա բոլոր քննարկումներում կամ ֆորումներում, որոնցում Դուք մասնակցում եք" @@ -8841,11 +8717,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Խնդրում ենք լրացնել հետևյալ դաշտերը` հաշիվ գրանցելու համար։" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Անհրաժեշտ է բոլոր վկայականների համար, որոնք Դուք, հնարավոր է, ստանաք։" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "հետագայում փոխել հնարավոր չէ" @@ -8900,12 +8776,12 @@ msgstr "" "{platform_name}-ի համար։ Սեղմե՛ք {dashboard_link_start}այստեղ{link_end}` " "ղեկավարման վահանակին վերադառնալու համար։" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Նախորդ" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Հաջորդ" @@ -8914,15 +8790,15 @@ msgstr "Հաջորդ" msgid "Sign Up for {platform_name}" msgstr "Բաժանորդագրվե՛ք {platform_name}-ի համար" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "օրինակ՝ yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "օրինակ՝ անունը (ֆորումներում երևացող) " -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "օրինակ՝ Ձեր անունը (հավաստագրերի համար)" @@ -9025,7 +8901,7 @@ msgstr "Հեռացնել ուսանողի կարգավիճակը" msgid "Rescore Student Submission" msgstr "Վերագնահատել ուսանողի պատասխանը" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Մոդուլ դաշտեր" @@ -9081,7 +8957,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Git-ի լոգեր" @@ -9161,6 +9036,18 @@ msgstr "Կայքից հեռացնել դասընթացը" msgid "Platform Version" msgstr "Պլատֆորմի տարբերակ" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9175,6 +9062,11 @@ msgstr "Ամսաթիվ" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9318,7 +9210,7 @@ msgstr "Հետ գնալ տրանսկրիպտի սկզբին։" msgid "Download video" msgstr "Ներբեռնել տեսանյութը" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Ներբեռնել տրանսկրիպտը" @@ -9334,7 +9226,6 @@ msgstr "Ձեր բառերը`" msgid "Total number of words:" msgstr "Բառերի ընդհանուր քանակը`" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Բացել հաշվիչը" @@ -9675,8 +9566,6 @@ msgstr "{chapter}, ընթացիկ բաժին" msgid "due {date}" msgstr "մինչ {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9734,12 +9623,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "Կիսվե՜լ ընկերների և ընտանիքի հետ։" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9793,6 +9680,17 @@ msgstr "" msgid "Additional Resources" msgstr "Լրացուցիչ աղբյուրներ" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Անդամագրվել" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9869,7 +9767,7 @@ msgid "No content has been added to this course" msgstr "Այս դասընթացին որևէ նյութ չի ավելացվել" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9909,11 +9807,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9921,7 +9819,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9975,7 +9872,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10006,7 +9902,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -10020,7 +9915,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10055,7 +9949,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Բաժին`" @@ -10100,7 +9993,6 @@ msgstr "Օր" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Ուսանողներ" @@ -10195,7 +10087,6 @@ msgstr "Տևողություն (վրկ)" msgid "Task Progress" msgstr "Առաջադրանքի առաջընթացը" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "անհայտ " @@ -10282,7 +10173,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10352,7 +10253,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "Ձեր {cert_name_short}-ը գեներացվում է" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Այս հղումը կբացի/կնեռբեռնի PDF փաստաթուղթը" @@ -10361,25 +10261,6 @@ msgstr "Այս հղումը կբացի/կնեռբեռնի PDF փաստաթուղ msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Քանի որ {cert_name_long}-ը գեներացնելիս մենք չունեինք հաստատման նկարների " -"ամբողջական խումբ, մենք չկարողացանք Ձեզ հատկացնել հաստատված " -"{cert_name_short}։ Փոխարենը Ձեզ հատկացվեց պատվո կոդի {cert_name_short} " -"վկայական։" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "Ներբեռնեք Ձեր {cert_name_short} (PDF)" @@ -10399,11 +10280,29 @@ msgstr "Ներբեռնել Ձեր ID-ով հաստատված {cert_name_short} ( msgid "Complete our course feedback survey" msgstr "Լրացնել մեր դասընթացի պատասխան հարցումը" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Քանի որ {cert_name_long}-ը գեներացնելիս մենք չունեինք հաստատման նկարների " +"ամբողջական խումբ, մենք չկարողացանք Ձեզ հատկացնել հաստատված " +"{cert_name_short}։ Փոխարենը Ձեզ հատկացվեց պատվո կոդի {cert_name_short} " +"վկայական։" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10412,11 +10311,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Ընդգրկված է որպես`" @@ -10437,7 +10331,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10447,7 +10340,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10506,7 +10398,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10560,44 +10451,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Դիտել արխիվացված դասընթացը" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Նայել դասընթացը" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10613,7 +10493,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10655,7 +10534,6 @@ msgstr "Մերժված." msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10853,7 +10731,6 @@ msgstr "Գրառումը խմբագրելիս" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Title" msgstr "Վերնագիր" @@ -10866,7 +10743,6 @@ msgstr "Թարմացնել գրառումը" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Մեկնաբանություն ավելացնել" @@ -10887,7 +10763,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11054,7 +10929,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11073,7 +10947,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11188,7 +11061,6 @@ msgstr "" msgid "User Profile" msgstr "Օգտատերի անձնական էջ" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -11946,8 +11818,6 @@ msgstr "Նշել որպես անհամապատասխան նյութ հետագա msgid "Skip" msgstr "Բաց թողնել" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12007,12 +11877,10 @@ msgstr "" msgid "Has the course started?" msgstr "Դասընթացն սկսվե՞լ է։" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Այո" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Ոչ" @@ -12150,7 +12018,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12298,7 +12165,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12363,7 +12229,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12393,24 +12258,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12478,7 +12335,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12596,7 +12452,6 @@ msgstr "Խնդիրների ցուցակը բեռնվում է..." msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12609,7 +12464,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12623,12 +12477,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Էլ. հասցեներ/Օգտագործողի անուններ" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12650,22 +12502,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Տեղեկացնել օգտագործողներին էլ. նամակի միջոցով" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Անդամագրվել" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12847,7 +12693,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12882,12 +12727,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Էլ. նամակ ուղարկել" @@ -12900,12 +12743,10 @@ msgstr "Ուղարկել`" msgid "Myself" msgstr "Ինձ" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Անձնակազմ և դասախոսներ" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12990,7 +12831,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13029,21 +12869,18 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" "Նշե՛ք դասընթացի հետ կապված խնդիրները այստեղ իրենց ամբողջական տեղի հետ " "միասին`" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Խնդրի տեղադրություն" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13385,7 +13222,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13407,7 +13243,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13592,15 +13427,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13707,7 +13537,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13733,19 +13562,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13800,12 +13626,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13818,14 +13642,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Մամուլում" @@ -14099,7 +13920,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14107,19 +13927,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "Լավ է երևում" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Հաջողված լուսանկար անելու հուշումներ" @@ -14140,7 +13957,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -14151,19 +13967,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Հաճախակի տրվող հարցեր" @@ -14181,7 +13994,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "Ի՞նչ եք անում այս նկարի հետ" @@ -14254,7 +14066,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14270,15 +14081,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14502,7 +14308,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14515,7 +14320,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14571,7 +14375,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14586,9 +14389,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(active){span_end}" @@ -14689,8 +14489,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14710,8 +14509,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14781,7 +14579,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14816,7 +14614,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14829,7 +14626,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14952,7 +14749,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Կառուցվածք" @@ -14962,7 +14759,6 @@ msgstr "Կառուցվածք" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "օրինակ՝ Xհամալսարան կամ Xկազմակերպություն" @@ -14972,8 +14768,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15048,7 +14842,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -15063,7 +14857,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15118,7 +14911,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15177,8 +14970,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15197,11 +14990,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15265,7 +15058,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15307,7 +15099,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15435,8 +15227,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15480,13 +15271,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15509,10 +15298,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15561,8 +15355,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15584,7 +15378,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15629,7 +15423,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15671,7 +15464,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15772,7 +15565,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15903,8 +15696,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15920,7 +15712,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15959,7 +15751,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15969,7 +15761,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -16000,7 +15792,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16030,7 +15822,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16075,7 +15867,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16096,7 +15888,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16104,7 +15896,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16116,7 +15908,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16168,7 +15960,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16176,7 +15968,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16236,7 +16028,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16290,7 +16082,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16343,13 +16135,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16588,7 +16378,6 @@ msgstr "Հիմնական տեղեկություն" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16647,8 +16436,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16731,7 +16519,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16957,7 +16744,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -17009,8 +16795,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17190,7 +16975,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17230,7 +17015,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17250,12 +17035,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17280,7 +17063,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17296,7 +17079,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17343,11 +17126,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17701,11 +17484,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo b/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo index ba1791da69..2dc5466890 100644 Binary files a/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo and b/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po b/conf/locale/hy_AM/LC_MESSAGES/djangojs.po index 8a2f875387..671a6e2a2a 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po +++ b/conf/locale/hy_AM/LC_MESSAGES/djangojs.po @@ -35,8 +35,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/edx-platform/language/hy_AM/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -78,8 +77,6 @@ msgstr "Հղումը կբացվի բրաուզերի նոր պատուհանու #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -87,7 +84,6 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "Ջնջել" @@ -167,7 +163,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s հնարավոր միավորներ)" msgstr[1] "(հնարավոր %(num_points)s միավորներ)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Պատասխան`" @@ -175,7 +170,6 @@ msgstr "Պատասխան`" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Թաքցնլ պատասխանը" @@ -196,7 +190,6 @@ msgstr "Պատասխանը թաքցված է" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "անպատասխան" @@ -215,7 +208,6 @@ msgstr "Դուք պետք է գնահատական ընտրեք հանձնելո #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" "Ձեր միավորը հաջորդ փուլ անցնելու համար անհրաժեշտ չափանիշերին չբավարարեց" @@ -289,11 +281,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Ցույց տալ հարցը" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Թաքցնել հարցը" @@ -301,7 +291,6 @@ msgstr "Թաքցնել հարցը" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Պարբերություն" @@ -312,21 +301,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Վերնագիր 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Վերնագիր 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Վերնագիր 3" @@ -1181,7 +1167,6 @@ msgstr "Հեռացնել հղումը" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1194,7 +1179,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "Փոխարինել" @@ -1529,18 +1513,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1658,7 +1638,6 @@ msgstr "HD-ն միացված է" msgid "HD off" msgstr "HD-ն անջատված է" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "տեսահոլովակի դիրք" @@ -1705,7 +1684,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Թաքցնել քննարկումը" @@ -1715,13 +1693,9 @@ msgid "Show Discussion" msgstr "Ցուցադրել քննարկումը" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1757,8 +1731,6 @@ msgstr "" "ուշ:" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2063,12 +2035,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2108,7 +2078,6 @@ msgstr "Հրապարակման ամսաթիվը" msgid "More" msgstr "Ավելին" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Իմ նշումները" @@ -2117,32 +2086,26 @@ msgstr "Իմ նշումները" msgid "Instructor" msgstr "Դասախոս" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Հրապարակային" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Փնտրել" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Օգտատերեր" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Պիտակներ" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Աննոտացիայի տեքստը" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "Մաքրել" @@ -2234,7 +2197,6 @@ msgstr "Օգտագործողի անուն" msgid "Email" msgstr "էլ. փոստ" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Չեղարկել թույլտվությունը" @@ -2247,7 +2209,6 @@ msgstr "Մուտքագրե՛ք օգտատիրոջ անունը կամ էլ. հա msgid "Please enter a username or email." msgstr "Խնդրում ենք մուտքագրել օգտատիրոջ անուն կամ էլ. փոստի հասցե։" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Սխալ` օգտատիրոջ թույլտվությունները փոխելիս։" @@ -2454,7 +2415,6 @@ msgstr "" msgid "Error sending email." msgstr "Սխալ` նամակն ուղարկելիս" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Այս դասընթացի համար նամակագրական պատմություն չկա:" @@ -2467,10 +2427,6 @@ msgstr "Սխալ` այս դասընթացի համար նամակագրությ msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Խնդրում ենք մուտքագրել ուսանողի էլ. փոստի հասցե կամ օգտատիրոջ անուն" @@ -2481,12 +2437,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Խնդրում ենք մուտքագրել խնդրի տեղադրությունը" @@ -2760,7 +2710,6 @@ msgstr "Համակարգը սխալ վիճակում հայտնվեց։ <%= stat msgid "System got into invalid state for submission: " msgstr "Հաստատման համար համակարգը սխալ վիճակում հայտնվեց " -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Թաքցնել)" @@ -2854,7 +2803,7 @@ msgstr "մուտքագրել նկարի նկարագիրն այստեղ" msgid "enter link description here" msgstr "մուտքագրել հղման նկարագիրն այստեղ" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "գրանցել կոդն այստեղ" @@ -2924,6 +2873,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2945,7 +2898,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2953,7 +2906,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3126,6 +3079,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3172,18 +3133,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3192,7 +3141,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Հնարավոր չեղավ բեռնել տվյալները, խնդրում ենք փորձել ավելի ուշ" @@ -3229,7 +3177,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3240,7 +3188,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3339,8 +3286,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3549,7 +3496,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3606,8 +3552,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3648,18 +3623,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3668,11 +3631,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3747,8 +3705,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3853,7 +3810,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3892,7 +3848,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3920,7 +3875,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4035,14 +3989,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4101,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4268,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4325,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4500,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4786,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4853,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4877,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4914,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5017,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5087,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5219,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5297,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5350,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5469,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5481,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5498,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5522,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5548,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/id/LC_MESSAGES/django.mo b/conf/locale/id/LC_MESSAGES/django.mo index e036765415..01069102bf 100644 Binary files a/conf/locale/id/LC_MESSAGES/django.mo and b/conf/locale/id/LC_MESSAGES/django.mo differ diff --git a/conf/locale/id/LC_MESSAGES/django.po b/conf/locale/id/LC_MESSAGES/django.po index 58e2f1cbb2..30d8e064ec 100644 --- a/conf/locale/id/LC_MESSAGES/django.po +++ b/conf/locale/id/LC_MESSAGES/django.po @@ -65,7 +65,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: lusiana \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/edx-platform/language/id/)\n" @@ -96,7 +96,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -104,7 +104,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -116,7 +115,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -143,15 +141,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -245,6 +239,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -265,7 +335,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -322,6 +392,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -432,102 +509,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -586,7 +567,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1019,7 +1000,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1032,7 +1013,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1071,7 +1052,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1079,7 +1060,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1118,13 +1099,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1156,17 +1135,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1209,7 +1186,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1365,7 +1341,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1397,7 +1372,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1449,7 +1423,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1478,7 +1451,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1619,8 +1591,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2137,12 +2107,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2261,9 +2225,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2501,7 +2462,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2577,8 +2537,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3155,7 +3113,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3407,7 +3365,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3550,7 +3507,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3598,7 +3554,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3636,7 +3591,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3933,19 +3887,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4052,6 +4002,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4100,7 +4066,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4160,7 +4125,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4225,12 +4190,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4293,9 +4257,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4329,7 +4292,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4363,22 +4326,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4387,7 +4338,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4488,12 +4438,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4607,18 +4554,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4649,7 +4592,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4759,7 +4701,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4826,8 +4767,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4881,7 +4822,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4940,7 +4880,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5189,7 +5128,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5239,7 +5177,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5329,8 +5267,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5426,7 +5363,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5456,14 +5392,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5556,7 +5489,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5593,7 +5526,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5723,7 +5655,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6070,7 +6001,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6176,7 +6106,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6358,7 +6287,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6411,12 +6339,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6436,10 +6361,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6476,7 +6398,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6488,11 +6410,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6514,7 +6436,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6742,12 +6664,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6757,21 +6676,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6849,8 +6760,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6862,12 +6771,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6877,11 +6784,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6993,7 +6898,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7023,7 +6927,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7239,8 +7147,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7252,13 +7159,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7278,7 +7180,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7287,13 +7189,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7308,10 +7208,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7321,7 +7219,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7353,14 +7251,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7374,7 +7271,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7401,13 +7298,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7428,7 +7323,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7511,7 +7405,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7555,7 +7449,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7563,7 +7457,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7597,7 +7491,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7648,15 +7542,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7720,7 +7605,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7757,7 +7642,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7800,13 +7685,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7828,31 +7711,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7869,7 +7752,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7885,7 +7767,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7912,7 +7793,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7972,8 +7853,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8109,7 +7988,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8290,7 +8169,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8311,17 +8190,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8341,13 +8218,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8365,7 +8240,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8430,7 +8305,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8441,7 +8315,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8562,11 +8435,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8617,12 +8490,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8631,15 +8504,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8740,7 +8613,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8796,7 +8669,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8874,6 +8746,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8888,6 +8772,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9025,7 +8914,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9041,7 +8930,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9378,8 +9266,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9437,12 +9323,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9496,6 +9380,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9572,7 +9467,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9608,11 +9503,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9620,7 +9515,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9674,7 +9568,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9705,7 +9598,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9719,7 +9611,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9754,7 +9645,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9799,7 +9689,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9890,7 +9779,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9977,7 +9865,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10043,7 +9941,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10052,21 +9949,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10085,11 +9967,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10098,11 +9994,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10123,7 +10014,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10133,7 +10023,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10191,7 +10080,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10245,44 +10133,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10298,7 +10175,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10340,7 +10216,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10538,9 +10413,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10552,7 +10425,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10573,7 +10445,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10738,7 +10609,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10757,7 +10627,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10868,7 +10737,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11592,8 +11460,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11653,12 +11519,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11796,7 +11660,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11944,7 +11807,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12009,7 +11871,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12039,24 +11900,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12124,7 +11977,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12238,7 +12090,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12251,7 +12102,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12263,12 +12113,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12290,22 +12138,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12487,7 +12329,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12522,12 +12363,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12540,12 +12379,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12626,7 +12463,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12665,19 +12501,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13019,7 +12852,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13041,7 +12873,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13225,15 +13056,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13340,7 +13166,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13366,19 +13191,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13433,12 +13255,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13451,14 +13271,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13730,7 +13547,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13738,19 +13554,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13771,7 +13584,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13782,19 +13594,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13812,7 +13621,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13885,7 +13693,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13901,15 +13708,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14133,7 +13935,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14146,7 +13947,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14202,7 +14002,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14217,9 +14016,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14320,8 +14116,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14341,8 +14136,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14412,7 +14206,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14447,7 +14241,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14460,7 +14253,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14583,7 +14376,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14593,7 +14386,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14603,8 +14395,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14679,7 +14469,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14694,7 +14484,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14749,7 +14538,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14808,8 +14597,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14828,11 +14617,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14896,7 +14685,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14938,7 +14726,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15066,8 +14854,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15111,13 +14898,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15140,10 +14925,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15192,8 +14982,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15215,7 +15005,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15260,7 +15050,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15302,7 +15091,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15403,7 +15192,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15534,8 +15323,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15551,7 +15339,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15590,7 +15378,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15600,7 +15388,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15631,7 +15419,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15661,7 +15449,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15706,7 +15494,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15727,7 +15515,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15735,7 +15523,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15747,7 +15535,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15799,7 +15587,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15807,7 +15595,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15867,7 +15655,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15921,7 +15709,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15974,13 +15762,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16219,7 +16005,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16278,8 +16063,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16362,7 +16146,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16588,7 +16371,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16640,8 +16422,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16821,7 +16602,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16861,7 +16642,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16881,12 +16662,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16911,7 +16690,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16927,7 +16706,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16974,11 +16753,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17332,11 +17111,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/id/LC_MESSAGES/djangojs.mo b/conf/locale/id/LC_MESSAGES/djangojs.mo index d8b50dde49..b4516a8400 100644 Binary files a/conf/locale/id/LC_MESSAGES/djangojs.mo and b/conf/locale/id/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/id/LC_MESSAGES/djangojs.po b/conf/locale/id/LC_MESSAGES/djangojs.po index 2bb9f381ab..77c71cd509 100644 --- a/conf/locale/id/LC_MESSAGES/djangojs.po +++ b/conf/locale/id/LC_MESSAGES/djangojs.po @@ -39,8 +39,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/edx-platform/language/id/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -82,8 +81,6 @@ msgstr "Tautan ini akan dibuka di jendela/tab peramban baru" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -91,17 +88,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -190,7 +184,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -198,7 +191,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -219,7 +211,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "Belum dibalas" @@ -238,7 +229,6 @@ msgstr "Anda perlu pilih peringkat sebelum mengajukan." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Skor Anda belum memenuhi kriteria untuk menuju langkah berikutnya." @@ -311,11 +301,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Tampilkan Pertanyaan" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Sembunyikan Pertanyaan" @@ -323,7 +311,6 @@ msgstr "Sembunyikan Pertanyaan" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -334,21 +321,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1217,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1231,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1568,18 +1550,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "HD on" msgid "HD off" msgstr "HD off" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Posisi video" @@ -1741,7 +1718,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Sembunyikan Diskusi" @@ -1751,13 +1727,9 @@ msgid "Show Discussion" msgstr "Tampilkan Diskusi" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1793,8 +1765,6 @@ msgstr "" " saat lagi." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2085,12 +2055,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2130,7 +2098,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2139,32 +2106,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2265,7 +2226,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2278,7 +2238,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "Harap masukkan username atau alamat email Anda:" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "Terjadi kesalahan saat kirim surel." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Tidak ada surel yang lampau untuk kursus ini." @@ -2482,10 +2440,6 @@ msgstr "Terjadi kesalahan saat mengambil surel yang lampau untuk kursus ini." msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Mohon isi alamat surel siswa atau nama pengguna." @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "Sistem berada di kondisi invalid: <%= state %>" msgid "System got into invalid state for submission: " msgstr "Sistem berada di kondisi invalid untuk pengajuan:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Sembunyikan)" @@ -2849,7 +2796,7 @@ msgstr "masukan keterangan gambar di sini" msgid "enter link description here" msgstr "masukan keterangan tautan di sini" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "masukan kode disini" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3116,6 +3067,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3162,18 +3121,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3182,7 +3129,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Tidak dapat menerima data, cobalah beberapa saat lagi." @@ -3218,7 +3164,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio mengalami kesulitan menyimpan hasil kerja Anda" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3229,7 +3175,6 @@ msgstr "Studio mengalami kesulitan menyimpan hasil kerja Anda" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Menyimpan" @@ -3328,8 +3273,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3541,7 +3486,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Waktu tenggang harus ditulis dalam format HH:MM. " #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3642,17 +3614,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3661,11 +3622,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3740,8 +3696,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3851,7 +3806,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3890,7 +3844,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3918,7 +3871,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4038,14 +3990,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4154,7 +4101,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4322,7 +4268,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4380,6 +4325,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4551,6 +4500,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4829,7 +4786,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4897,6 +4853,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4907,10 +4877,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4936,12 +4914,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5041,7 +5017,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5112,10 +5087,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5248,7 +5219,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5327,7 +5297,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5381,7 +5350,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5501,15 +5469,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5519,11 +5481,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5539,7 +5498,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5564,8 +5522,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5592,8 +5548,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/it_IT/LC_MESSAGES/django.mo b/conf/locale/it_IT/LC_MESSAGES/django.mo index 1d0a4016a1..bffa637baa 100644 Binary files a/conf/locale/it_IT/LC_MESSAGES/django.mo and b/conf/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/it_IT/LC_MESSAGES/django.po b/conf/locale/it_IT/LC_MESSAGES/django.po index c38895675f..ab82c785da 100644 --- a/conf/locale/it_IT/LC_MESSAGES/django.po +++ b/conf/locale/it_IT/LC_MESSAGES/django.po @@ -99,7 +99,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Giulio Gratta\n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" @@ -130,7 +130,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -138,7 +138,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -150,7 +149,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -177,15 +175,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -279,6 +273,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -299,7 +369,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -356,6 +426,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -466,102 +543,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Errore (401 {field}). Contattaci." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -622,7 +603,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID non valido" @@ -1056,7 +1037,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1069,7 +1050,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1108,7 +1089,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1116,7 +1097,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1155,13 +1136,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1193,17 +1172,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1246,7 +1223,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1397,7 +1373,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1429,7 +1404,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1481,7 +1455,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1510,7 +1483,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1651,8 +1623,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2169,12 +2139,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2293,9 +2257,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2532,7 +2493,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Chi siamo" @@ -2608,8 +2568,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3188,7 +3146,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3440,7 +3398,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3583,7 +3540,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3631,7 +3587,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3669,7 +3624,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3966,19 +3920,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4086,6 +4036,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4134,7 +4100,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4194,7 +4159,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4259,12 +4224,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4327,9 +4291,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4363,7 +4326,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4397,22 +4360,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4421,7 +4372,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4516,7 +4466,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Email" @@ -4630,18 +4579,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4672,7 +4617,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4784,7 +4728,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4851,8 +4794,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4906,7 +4849,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4961,7 +4903,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5210,7 +5151,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5260,7 +5200,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5350,8 +5290,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5443,7 +5382,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5473,14 +5411,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5573,7 +5508,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5610,7 +5545,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5740,7 +5674,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6087,7 +6020,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6193,7 +6125,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6374,7 +6305,6 @@ msgstr "Cancella articolo" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Cancella" @@ -6427,12 +6357,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6452,10 +6379,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6492,7 +6416,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6504,11 +6428,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6530,7 +6454,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6757,30 +6681,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Password" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6858,8 +6772,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6868,12 +6780,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "Termini e Condizioni del Servizio" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6883,11 +6793,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6999,7 +6907,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7034,7 +6941,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7254,8 +7165,7 @@ msgstr "Pagina non trovata" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7267,13 +7177,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7293,7 +7198,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Impostazioni" @@ -7302,13 +7207,11 @@ msgstr "Impostazioni" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7323,10 +7226,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7336,7 +7237,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7368,14 +7269,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7389,7 +7289,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7416,13 +7316,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Aiuto" @@ -7443,7 +7341,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7526,7 +7423,7 @@ msgstr "Nuovo" msgid "Dashboard" msgstr "Bacheca" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "modifica" @@ -7570,7 +7467,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7578,7 +7475,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7612,7 +7509,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Cambia Email" @@ -7663,15 +7560,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7735,7 +7623,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7772,7 +7660,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7815,13 +7703,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contatti" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -7843,31 +7729,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7884,7 +7770,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Offerte di lavoro" @@ -7900,7 +7785,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7927,7 +7811,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7987,8 +7871,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8125,7 +8007,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8306,7 +8188,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8327,17 +8209,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8357,13 +8237,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8381,7 +8259,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8446,7 +8324,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8457,7 +8334,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8578,11 +8454,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8633,12 +8509,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8647,15 +8523,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8756,7 +8632,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8812,7 +8688,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8890,6 +8765,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8904,6 +8791,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9041,7 +8933,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9057,7 +8949,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9396,8 +9287,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9455,12 +9344,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9514,6 +9401,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9590,7 +9488,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9626,11 +9524,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9638,7 +9536,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9692,7 +9589,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9723,7 +9619,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9737,7 +9632,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9772,7 +9666,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9817,7 +9710,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9908,7 +9800,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9995,7 +9886,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10061,7 +9962,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10070,21 +9970,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10103,11 +9988,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10116,11 +10015,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10141,7 +10035,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10151,7 +10044,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10210,7 +10102,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10264,44 +10155,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10317,7 +10197,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10359,7 +10238,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10557,7 +10435,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: wiki/forms.py wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Title" msgstr "Titolo" @@ -10569,7 +10447,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10590,7 +10467,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10755,7 +10631,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10774,7 +10649,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10887,7 +10761,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11611,8 +11484,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11672,12 +11543,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11815,7 +11684,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11963,7 +11831,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12028,7 +11895,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12058,24 +11924,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12143,7 +12001,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12257,7 +12114,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12270,7 +12126,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12282,12 +12137,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12309,22 +12162,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12506,7 +12353,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12541,12 +12387,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12559,12 +12403,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12645,7 +12487,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12684,19 +12525,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13038,7 +12876,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13060,7 +12897,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13245,15 +13081,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13360,7 +13191,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13386,19 +13216,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13453,12 +13280,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13471,14 +13296,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13750,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13758,19 +13579,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13791,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13802,19 +13619,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13832,7 +13646,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13905,7 +13718,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13921,15 +13733,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14153,7 +13960,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14166,7 +13972,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14222,7 +14027,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14237,9 +14041,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14341,8 +14142,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14362,8 +14162,7 @@ msgstr "Contenuto" msgid "Page Actions" msgstr "Azioni Pagina" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Carica un nuovo file" @@ -14433,7 +14232,7 @@ msgstr "Il tuo file è stato cancellato" msgid "close alert" msgstr "chiudi avviso" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14468,7 +14267,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Duplica" @@ -14481,7 +14279,7 @@ msgid "Delete this component" msgstr "Cancella questo componente" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14604,7 +14402,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Organizzazione" @@ -14614,7 +14412,6 @@ msgstr "Organizzazione" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14624,8 +14421,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14700,7 +14495,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Aggiornamenti Corso" @@ -14715,7 +14510,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14770,7 +14564,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14829,8 +14623,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14849,11 +14643,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14917,7 +14711,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14959,7 +14752,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Torna alla dashboard" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Esporta Corso" @@ -15087,8 +14880,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15132,13 +14924,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15161,10 +14951,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15213,8 +15008,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Impostazioni Avanzate" @@ -15236,7 +15031,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15281,7 +15076,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15323,7 +15117,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15424,7 +15218,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Importa Corso" @@ -15555,8 +15349,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15572,7 +15365,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15611,7 +15404,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15621,7 +15414,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15652,7 +15445,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15682,7 +15475,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15727,7 +15520,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15748,7 +15541,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15756,7 +15549,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15768,7 +15561,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15820,7 +15613,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15828,7 +15621,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15888,7 +15681,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15942,7 +15735,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15995,13 +15788,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16240,7 +16031,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16299,8 +16089,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16383,7 +16172,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16609,7 +16397,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16661,8 +16448,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16842,7 +16628,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16882,7 +16668,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16902,12 +16688,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16932,7 +16716,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16948,7 +16732,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17000,11 +16784,11 @@ msgstr "" "puoi usare funzionalità più complesse come aggiungere plug-ins, meta-data, " "aticoli correlati ecc..." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Contenuto" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Sommario" @@ -17393,11 +17177,11 @@ msgstr "revisioni allegato" msgid "%s was successfully added." msgstr "%s è stato aggiunto con successo." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Il tuo file non può essere salvato: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.mo b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo index 329c19ebe6..b0d77dd220 100644 Binary files a/conf/locale/it_IT/LC_MESSAGES/djangojs.mo and b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.po b/conf/locale/it_IT/LC_MESSAGES/djangojs.po index 1ef74b4f1f..cb809c4926 100644 --- a/conf/locale/it_IT/LC_MESSAGES/djangojs.po +++ b/conf/locale/it_IT/LC_MESSAGES/djangojs.po @@ -70,8 +70,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -124,8 +123,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -133,17 +130,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -236,7 +230,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -244,7 +237,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -265,7 +257,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -284,7 +275,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -348,11 +338,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -360,7 +348,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -371,21 +358,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1256,7 +1240,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1270,7 +1253,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1607,18 +1589,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1736,7 +1714,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1783,7 +1760,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1793,13 +1769,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1829,8 +1801,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2130,12 +2100,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2176,7 +2144,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2185,32 +2152,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2311,7 +2272,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2324,7 +2284,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2512,7 +2471,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2525,10 +2483,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2539,12 +2493,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2798,7 +2746,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2892,7 +2839,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2962,6 +2909,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2983,7 +2934,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2991,7 +2942,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3164,6 +3115,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3210,18 +3169,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3230,7 +3177,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3267,7 +3213,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3278,7 +3224,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Salvataggio in corso" @@ -3377,8 +3322,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3594,7 +3539,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Il periodo di grazia deve essere specificato nel formato HH:MM." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3655,8 +3599,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3697,18 +3670,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3717,11 +3678,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3798,8 +3754,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3909,7 +3864,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3948,7 +3902,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3976,7 +3929,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4094,14 +4046,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4211,7 +4158,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4379,7 +4325,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4437,6 +4382,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4608,6 +4557,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4886,7 +4843,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4954,6 +4910,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4964,10 +4934,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4993,12 +4971,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5098,7 +5074,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5169,10 +5144,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5305,7 +5276,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5384,7 +5354,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5438,7 +5407,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5558,15 +5526,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5576,11 +5538,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5596,7 +5555,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5621,8 +5579,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5649,8 +5605,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.mo b/conf/locale/ja_JP/LC_MESSAGES/django.mo index a43751d5f9..fbbd220621 100644 Binary files a/conf/locale/ja_JP/LC_MESSAGES/django.mo and b/conf/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.po b/conf/locale/ja_JP/LC_MESSAGES/django.po index f1d539c70e..462d8a6fc1 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/django.po +++ b/conf/locale/ja_JP/LC_MESSAGES/django.po @@ -82,7 +82,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: h_yoshida \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/edx-platform/language/ja_JP/)\n" @@ -113,7 +113,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -121,7 +121,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -133,7 +132,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -160,15 +158,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -262,6 +256,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "規約に同意いただく必要があります。" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -282,7 +352,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "その他" @@ -338,6 +408,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -448,102 +525,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "規約に同意いただく必要があります。" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "規約への同意が必要です。" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -602,7 +583,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1035,7 +1016,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1048,7 +1029,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1087,7 +1068,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1095,7 +1076,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1134,13 +1115,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1172,17 +1151,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1225,7 +1202,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1381,7 +1357,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1413,7 +1388,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1465,7 +1439,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1494,7 +1467,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1635,8 +1607,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2153,12 +2123,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2277,9 +2241,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2517,7 +2478,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2593,8 +2553,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3171,7 +3129,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3423,7 +3381,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3566,7 +3523,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3614,7 +3570,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3652,7 +3607,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3949,19 +3903,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4068,6 +4018,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4174,7 +4140,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4239,12 +4205,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "メールアドレス" @@ -4307,9 +4272,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4343,7 +4307,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4377,22 +4341,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4401,7 +4353,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4502,12 +4453,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "メールアドレス" @@ -4621,18 +4569,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4663,7 +4607,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4773,7 +4716,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "外部メールアドレス" @@ -4840,8 +4782,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4895,7 +4837,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4954,7 +4895,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5203,7 +5143,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5253,7 +5192,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5343,8 +5282,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5440,7 +5378,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5470,14 +5407,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5570,7 +5504,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5607,7 +5541,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5737,7 +5670,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6084,7 +6016,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6190,7 +6121,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6372,7 +6302,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6425,12 +6354,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6450,10 +6376,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6490,7 +6413,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6502,11 +6425,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6528,7 +6451,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6758,12 +6681,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6773,21 +6693,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6862,8 +6774,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "無料聴講コース" @@ -6875,12 +6785,10 @@ msgstr "無料聴講コース" msgid "Terms of Service and Honor Code" msgstr "利用規約" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6890,11 +6798,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7006,7 +6912,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7036,7 +6941,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7252,8 +7161,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7265,13 +7173,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7291,7 +7194,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7300,13 +7203,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7321,10 +7222,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7334,7 +7233,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7366,14 +7265,13 @@ msgstr "例:学校 太郎" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "例:gacco" @@ -7387,7 +7285,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7414,13 +7312,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7441,7 +7337,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7525,7 +7420,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "編集" @@ -7569,7 +7464,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7577,7 +7472,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7611,7 +7506,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7662,15 +7557,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7734,7 +7620,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7771,7 +7657,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7814,13 +7700,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "よくある質問" @@ -7842,31 +7726,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7883,7 +7767,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7899,7 +7782,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7926,7 +7808,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7987,8 +7869,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8124,7 +8004,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8305,7 +8185,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8326,17 +8206,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8356,13 +8234,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "会員登録" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8380,7 +8256,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "新規会員登録" @@ -8445,7 +8321,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "登録処理をする際にエラーが発生しました:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8456,7 +8331,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8578,11 +8452,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "修了証に表示するために用いる情報です" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8633,12 +8507,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8647,15 +8521,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "例:氏名 (修了証に記載されます)" @@ -8756,7 +8630,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8812,7 +8686,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8890,6 +8763,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8904,6 +8789,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9041,7 +8931,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9057,7 +8947,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9394,8 +9283,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9453,12 +9340,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9512,6 +9397,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9588,7 +9484,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9624,11 +9520,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9636,7 +9532,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9690,7 +9585,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9721,7 +9615,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9735,7 +9628,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9770,7 +9662,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9815,7 +9706,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9906,7 +9796,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9993,7 +9882,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10059,7 +9958,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10068,21 +9966,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10101,11 +9984,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10114,11 +10011,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10139,7 +10031,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10149,7 +10040,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "無料聴講コース受講者として登録されています。" @@ -10207,7 +10097,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10261,44 +10150,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "講座画面へ(修了証発行済)" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "メール受信設定" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10314,7 +10192,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10356,7 +10233,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10554,9 +10430,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10568,7 +10442,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10589,7 +10462,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10754,7 +10626,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10773,7 +10644,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10884,7 +10754,6 @@ msgstr "" msgid "User Profile" msgstr "ユーザー情報" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11609,8 +11478,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11670,12 +11537,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11813,7 +11678,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11961,7 +11825,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12026,7 +11889,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12056,24 +11918,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12141,7 +11995,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12255,7 +12108,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12268,7 +12120,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12280,12 +12131,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "メールアドレス/ユーザ名" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12307,22 +12156,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12504,7 +12347,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12539,12 +12381,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12557,12 +12397,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12643,7 +12481,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12682,19 +12519,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13036,7 +12870,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13058,7 +12891,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13242,15 +13074,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13357,7 +13184,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13383,19 +13209,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13450,12 +13273,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13468,14 +13289,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13747,7 +13565,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13755,19 +13572,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13788,7 +13602,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13799,19 +13612,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13829,7 +13639,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13902,7 +13711,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13918,15 +13726,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14150,7 +13953,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14163,7 +13965,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14219,7 +14020,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14234,9 +14034,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14337,8 +14134,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14358,8 +14154,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14429,7 +14224,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14464,7 +14259,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14477,7 +14271,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14600,7 +14394,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14610,7 +14404,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14620,8 +14413,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14696,7 +14487,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14711,7 +14502,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14766,7 +14556,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14825,8 +14615,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14845,11 +14635,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14913,7 +14703,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14955,7 +14744,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15083,8 +14872,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15128,13 +14916,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15157,10 +14943,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15209,8 +15000,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15232,7 +15023,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15277,7 +15068,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15319,7 +15109,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15420,7 +15210,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15551,8 +15341,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15568,7 +15357,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15607,7 +15396,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15617,7 +15406,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15648,7 +15437,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15678,7 +15467,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15723,7 +15512,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15744,7 +15533,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15752,7 +15541,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15764,7 +15553,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15816,7 +15605,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15824,7 +15613,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15884,7 +15673,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15938,7 +15727,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15991,13 +15780,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16236,7 +16023,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16295,8 +16081,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16379,7 +16164,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "導入、必須条件、よくある質問は %s (formatted in HTML) 上で使われます。" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16605,7 +16389,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16657,8 +16440,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16838,7 +16620,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16878,7 +16660,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16898,12 +16680,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16928,7 +16708,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16944,7 +16724,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16991,11 +16771,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17349,11 +17129,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo index 7dbeb525b7..df6d760c2a 100644 Binary files a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo and b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po index 8479eb7e87..f50f6905fd 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po +++ b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po @@ -47,8 +47,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/edx-platform/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -101,8 +100,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -110,17 +107,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -211,7 +205,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -219,7 +212,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -240,7 +232,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -259,7 +250,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -323,11 +313,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -335,7 +323,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -346,21 +333,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1231,7 +1215,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1245,7 +1228,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1582,18 +1564,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1711,7 +1689,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1755,7 +1732,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1765,13 +1741,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1801,8 +1773,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2089,12 +2059,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2134,7 +2102,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2143,32 +2110,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2269,7 +2230,6 @@ msgstr "" msgid "Email" msgstr "メールアドレス" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2282,7 +2242,6 @@ msgstr "ユーザー名またはメールアドレスを入力" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2470,7 +2429,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2483,10 +2441,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2497,12 +2451,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2756,7 +2704,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2850,7 +2797,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2920,6 +2867,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2941,7 +2892,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2949,7 +2900,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3117,6 +3068,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3163,18 +3122,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3183,7 +3130,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3217,7 +3163,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3228,7 +3174,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3327,8 +3272,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3537,7 +3482,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3595,8 +3539,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3636,17 +3608,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3655,11 +3616,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3734,8 +3690,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3840,7 +3795,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3879,7 +3833,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3907,7 +3860,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4022,14 +3974,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4138,7 +4085,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4306,7 +4252,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4364,6 +4309,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4535,6 +4484,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4813,7 +4770,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4881,6 +4837,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4891,10 +4861,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4920,12 +4898,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5025,7 +5001,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5096,10 +5071,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5232,7 +5203,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5311,7 +5281,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5365,7 +5334,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5485,15 +5453,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5503,11 +5465,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5523,7 +5482,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5548,8 +5506,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5576,8 +5532,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/kk_KZ/LC_MESSAGES/django.mo b/conf/locale/kk_KZ/LC_MESSAGES/django.mo index 01919b12d5..4bdac5ec5d 100644 Binary files a/conf/locale/kk_KZ/LC_MESSAGES/django.mo and b/conf/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/conf/locale/kk_KZ/LC_MESSAGES/django.po b/conf/locale/kk_KZ/LC_MESSAGES/django.po index 4d3e78213d..c6c7eccb94 100644 --- a/conf/locale/kk_KZ/LC_MESSAGES/django.po +++ b/conf/locale/kk_KZ/LC_MESSAGES/django.po @@ -53,7 +53,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-06 06:10+0000\n" "Last-Translator: Ardakh \n" "Language-Team: Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/)\n" @@ -84,7 +84,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -92,7 +92,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -104,7 +103,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -131,15 +129,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -233,6 +227,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -253,7 +323,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -310,6 +380,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -420,102 +497,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -574,7 +555,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1007,7 +988,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1020,7 +1001,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1059,7 +1040,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1067,7 +1048,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1106,13 +1087,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1144,17 +1123,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1197,7 +1174,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1353,7 +1329,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1385,7 +1360,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1437,7 +1411,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1466,7 +1439,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1607,8 +1579,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2125,12 +2095,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2249,9 +2213,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2489,7 +2450,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2565,8 +2525,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3143,7 +3101,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3395,7 +3353,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3538,7 +3495,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3586,7 +3542,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3624,7 +3579,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3921,19 +3875,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4040,6 +3990,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4088,7 +4054,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4148,7 +4113,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4213,12 +4178,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4281,9 +4245,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4317,7 +4280,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4351,22 +4314,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4375,7 +4326,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4476,12 +4426,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4595,18 +4542,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4637,7 +4580,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4747,7 +4689,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4814,8 +4755,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4869,7 +4810,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4928,7 +4868,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5177,7 +5116,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5227,7 +5165,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5317,8 +5255,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5414,7 +5351,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5444,14 +5380,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5544,7 +5477,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5581,7 +5514,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5711,7 +5643,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6058,7 +5989,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6164,7 +6094,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6346,7 +6275,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6399,12 +6327,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6424,10 +6349,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6464,7 +6386,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6476,11 +6398,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6502,7 +6424,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6730,12 +6652,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6745,21 +6664,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6837,8 +6748,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6850,12 +6759,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6865,11 +6772,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6981,7 +6886,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7011,7 +6915,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7227,8 +7135,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7240,13 +7147,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7266,7 +7168,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7275,13 +7177,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7296,10 +7196,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7309,7 +7207,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7341,14 +7239,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7362,7 +7259,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7389,13 +7286,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7416,7 +7311,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7499,7 +7393,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7543,7 +7437,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7551,7 +7445,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7585,7 +7479,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7636,15 +7530,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7708,7 +7593,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7745,7 +7630,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7788,13 +7673,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7816,31 +7699,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7857,7 +7740,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7873,7 +7755,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7900,7 +7781,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7960,8 +7841,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8097,7 +7976,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8278,7 +8157,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8299,17 +8178,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8329,13 +8206,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8353,7 +8228,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8418,7 +8293,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8429,7 +8303,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8550,11 +8423,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8605,12 +8478,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8619,15 +8492,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8728,7 +8601,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8784,7 +8657,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8862,6 +8734,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8876,6 +8760,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9013,7 +8902,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9029,7 +8918,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9366,8 +9254,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9425,12 +9311,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9484,6 +9368,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9560,7 +9455,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9596,11 +9491,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9608,7 +9503,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9662,7 +9556,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9693,7 +9586,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9707,7 +9599,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9742,7 +9633,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9787,7 +9677,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9878,7 +9767,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9965,7 +9853,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10031,7 +9929,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10040,21 +9937,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10073,11 +9955,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10086,11 +9982,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10111,7 +10002,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10121,7 +10011,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10179,7 +10068,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10233,44 +10121,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10286,7 +10163,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10328,7 +10204,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10526,9 +10401,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10540,7 +10413,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10561,7 +10433,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10726,7 +10597,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10745,7 +10615,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10856,7 +10725,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11580,8 +11448,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11641,12 +11507,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11784,7 +11648,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11932,7 +11795,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11997,7 +11859,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12027,24 +11888,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12112,7 +11965,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12226,7 +12078,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12239,7 +12090,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12251,12 +12101,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12278,22 +12126,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12475,7 +12317,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12510,12 +12351,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12528,12 +12367,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12614,7 +12451,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12653,19 +12489,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13007,7 +12840,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13029,7 +12861,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo index 2c536d5d66..55340336df 100644 Binary files a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo and b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po index b377c2e5dc..bc22c99aa6 100644 --- a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po +++ b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -86,8 +85,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -95,17 +92,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -196,7 +190,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -204,7 +197,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -225,7 +217,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -244,7 +235,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -308,11 +298,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -320,7 +308,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -331,21 +318,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1216,7 +1200,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1230,7 +1213,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1567,18 +1549,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1696,7 +1674,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2074,12 +2044,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2119,7 +2087,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2128,32 +2095,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2254,7 +2215,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2267,7 +2227,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2455,7 +2414,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2468,10 +2426,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2482,12 +2436,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2741,7 +2689,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2835,7 +2782,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2905,6 +2852,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2926,7 +2877,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2934,7 +2885,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3102,6 +3053,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3148,18 +3107,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3168,7 +3115,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3202,7 +3148,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3213,7 +3159,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3312,8 +3257,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3522,7 +3467,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3580,8 +3524,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3621,17 +3593,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3640,11 +3601,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3719,8 +3675,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3825,7 +3780,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3864,7 +3818,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3892,7 +3845,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4007,14 +3959,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4123,7 +4070,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4291,7 +4237,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4349,6 +4294,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4520,6 +4469,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4798,7 +4755,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4866,6 +4822,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4876,10 +4846,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4905,12 +4883,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5010,7 +4986,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5081,10 +5056,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5217,7 +5188,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5296,7 +5266,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5350,7 +5319,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5470,15 +5438,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5488,11 +5450,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5508,7 +5467,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5533,8 +5491,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5561,8 +5517,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/km_KH/LC_MESSAGES/django.mo b/conf/locale/km_KH/LC_MESSAGES/django.mo index cf3c4429e9..37a9ed17a0 100644 Binary files a/conf/locale/km_KH/LC_MESSAGES/django.mo and b/conf/locale/km_KH/LC_MESSAGES/django.mo differ diff --git a/conf/locale/km_KH/LC_MESSAGES/django.po b/conf/locale/km_KH/LC_MESSAGES/django.po index 9b01e83037..364b83df54 100644 --- a/conf/locale/km_KH/LC_MESSAGES/django.po +++ b/conf/locale/km_KH/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-07-22 14:02+0000\n" "Last-Translator: vireax\n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" @@ -71,7 +71,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -79,7 +79,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -118,15 +116,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -220,6 +214,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -240,7 +310,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -297,6 +367,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -407,102 +484,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -994,7 +975,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1007,7 +988,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1046,7 +1027,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1054,7 +1035,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1093,13 +1074,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1131,17 +1110,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1184,7 +1161,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1340,7 +1316,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1372,7 +1347,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1424,7 +1398,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1453,7 +1426,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1594,8 +1566,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2112,12 +2082,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2236,9 +2200,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2476,7 +2437,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2552,8 +2512,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3130,7 +3088,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3382,7 +3340,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3525,7 +3482,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3573,7 +3529,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3611,7 +3566,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3908,19 +3862,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4027,6 +3977,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4075,7 +4041,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4135,7 +4100,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4200,12 +4165,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4268,9 +4232,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4304,7 +4267,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4338,22 +4301,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4362,7 +4313,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4463,12 +4413,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4582,18 +4529,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4624,7 +4567,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4734,7 +4676,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4801,8 +4742,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4856,7 +4797,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4915,7 +4855,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5164,7 +5103,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5214,7 +5152,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5304,8 +5242,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5401,7 +5338,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5431,14 +5367,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5531,7 +5464,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5568,7 +5501,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5698,7 +5630,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6045,7 +5976,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6151,7 +6081,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6333,7 +6262,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6386,12 +6314,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6411,10 +6336,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6451,7 +6373,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6463,11 +6385,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6489,7 +6411,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6717,12 +6639,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6732,21 +6651,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6824,8 +6735,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6837,12 +6746,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6852,11 +6759,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6968,7 +6873,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6998,7 +6902,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7214,8 +7122,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7227,13 +7134,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7253,7 +7155,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7262,13 +7164,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7283,10 +7183,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7296,7 +7194,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7328,14 +7226,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7349,7 +7246,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7376,13 +7273,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7403,7 +7298,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7486,7 +7380,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7530,7 +7424,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7538,7 +7432,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7572,7 +7466,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7623,15 +7517,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7695,7 +7580,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7732,7 +7617,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7775,13 +7660,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7803,31 +7686,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7844,7 +7727,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7860,7 +7742,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7887,7 +7768,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7947,8 +7828,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8084,7 +7963,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8265,7 +8144,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8286,17 +8165,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8316,13 +8193,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8340,7 +8215,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8405,7 +8280,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8416,7 +8290,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8537,11 +8410,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8592,12 +8465,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8606,15 +8479,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8715,7 +8588,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8771,7 +8644,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8849,6 +8721,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8863,6 +8747,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9000,7 +8889,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9016,7 +8905,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9353,8 +9241,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9412,12 +9298,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9471,6 +9355,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9547,7 +9442,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9583,11 +9478,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9595,7 +9490,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9649,7 +9543,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9680,7 +9573,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9694,7 +9586,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9729,7 +9620,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9774,7 +9664,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9865,7 +9754,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9952,7 +9840,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10018,7 +9916,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10027,21 +9924,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10060,11 +9942,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10073,11 +9969,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10098,7 +9989,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10108,7 +9998,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10166,7 +10055,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10220,44 +10108,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10273,7 +10150,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10315,7 +10191,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10513,9 +10388,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10527,7 +10400,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10548,7 +10420,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10713,7 +10584,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10732,7 +10602,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10843,7 +10712,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11567,8 +11435,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11628,12 +11494,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11771,7 +11635,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11919,7 +11782,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11984,7 +11846,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12014,24 +11875,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12099,7 +11952,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12213,7 +12065,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12226,7 +12077,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12238,12 +12088,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12265,22 +12113,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12462,7 +12304,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12497,12 +12338,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12515,12 +12354,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12601,7 +12438,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12640,19 +12476,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12994,7 +12827,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13016,7 +12848,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13200,15 +13031,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13315,7 +13141,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13341,19 +13166,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13408,12 +13230,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13426,14 +13246,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13705,7 +13522,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13713,19 +13529,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13746,7 +13559,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13757,19 +13569,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13787,7 +13596,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13860,7 +13668,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13876,15 +13683,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14108,7 +13910,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14121,7 +13922,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14177,7 +13977,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14192,9 +13991,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14295,8 +14091,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14316,8 +14111,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14387,7 +14181,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14422,7 +14216,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14435,7 +14228,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14558,7 +14351,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14568,7 +14361,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14578,8 +14370,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14654,7 +14444,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14669,7 +14459,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14724,7 +14513,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14783,8 +14572,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14803,11 +14592,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14871,7 +14660,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14913,7 +14701,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15041,8 +14829,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15086,13 +14873,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15115,10 +14900,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15167,8 +14957,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15190,7 +14980,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15235,7 +15025,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15277,7 +15066,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15378,7 +15167,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15509,8 +15298,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15526,7 +15314,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15565,7 +15353,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15575,7 +15363,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15606,7 +15394,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15636,7 +15424,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15681,7 +15469,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15702,7 +15490,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15710,7 +15498,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15722,7 +15510,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15774,7 +15562,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15782,7 +15570,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15842,7 +15630,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15896,7 +15684,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15949,13 +15737,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16194,7 +15980,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16253,8 +16038,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16337,7 +16121,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16563,7 +16346,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16615,8 +16397,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16796,7 +16577,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16836,7 +16617,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16856,12 +16637,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16886,7 +16665,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16902,7 +16681,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16949,11 +16728,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17307,11 +17086,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/km_KH/LC_MESSAGES/djangojs.mo b/conf/locale/km_KH/LC_MESSAGES/djangojs.mo index ad32cdf718..98b2ba86f1 100644 Binary files a/conf/locale/km_KH/LC_MESSAGES/djangojs.mo and b/conf/locale/km_KH/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/km_KH/LC_MESSAGES/djangojs.po b/conf/locale/km_KH/LC_MESSAGES/djangojs.po index 51d29a21ee..b3260c9a95 100644 --- a/conf/locale/km_KH/LC_MESSAGES/djangojs.po +++ b/conf/locale/km_KH/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -191,7 +185,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -199,7 +192,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -220,7 +212,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -239,7 +230,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -303,11 +293,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -315,7 +303,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -326,21 +313,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1211,7 +1195,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1225,7 +1208,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1562,18 +1544,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1691,7 +1669,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1735,7 +1712,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1745,13 +1721,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1781,8 +1753,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2069,12 +2039,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2114,7 +2082,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2123,32 +2090,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2249,7 +2210,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2262,7 +2222,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2450,7 +2409,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2463,10 +2421,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2477,12 +2431,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2736,7 +2684,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2830,7 +2777,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2900,6 +2847,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2921,7 +2872,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2929,7 +2880,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3097,6 +3048,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3143,18 +3102,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3163,7 +3110,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3197,7 +3143,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3208,7 +3154,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3307,8 +3252,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3517,7 +3462,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3575,8 +3519,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3616,17 +3588,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3635,11 +3596,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3714,8 +3670,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3820,7 +3775,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3859,7 +3813,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3887,7 +3840,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4002,14 +3954,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4118,7 +4065,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4286,7 +4232,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4344,6 +4289,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4515,6 +4464,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4793,7 +4750,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4861,6 +4817,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4871,10 +4841,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4900,12 +4878,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5005,7 +4981,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5076,10 +5051,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5212,7 +5183,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5291,7 +5261,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5345,7 +5314,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5465,15 +5433,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5483,11 +5445,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5503,7 +5462,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5528,8 +5486,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5556,8 +5512,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/kn/LC_MESSAGES/django.mo b/conf/locale/kn/LC_MESSAGES/django.mo index 82426d5e7c..6b984b5f9d 100644 Binary files a/conf/locale/kn/LC_MESSAGES/django.mo and b/conf/locale/kn/LC_MESSAGES/django.mo differ diff --git a/conf/locale/kn/LC_MESSAGES/django.po b/conf/locale/kn/LC_MESSAGES/django.po index f5c7fda34d..63e1752943 100644 --- a/conf/locale/kn/LC_MESSAGES/django.po +++ b/conf/locale/kn/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-05-05 13:09+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -559,7 +540,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -992,7 +973,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1005,7 +986,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1044,7 +1025,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1052,7 +1033,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1091,13 +1072,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1129,17 +1108,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1182,7 +1159,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1338,7 +1314,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1370,7 +1345,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1422,7 +1396,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1451,7 +1424,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1592,8 +1564,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2110,12 +2080,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2234,9 +2198,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2474,7 +2435,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2550,8 +2510,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3128,7 +3086,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3380,7 +3338,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3523,7 +3480,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3571,7 +3527,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3609,7 +3564,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3906,19 +3860,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4025,6 +3975,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4073,7 +4039,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4133,7 +4098,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4198,12 +4163,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4266,9 +4230,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4302,7 +4265,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4336,22 +4299,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4360,7 +4311,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4461,12 +4411,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4580,18 +4527,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4622,7 +4565,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4732,7 +4674,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4799,8 +4740,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4854,7 +4795,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4913,7 +4853,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5162,7 +5101,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5212,7 +5150,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5302,8 +5240,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5399,7 +5336,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5429,14 +5365,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5529,7 +5462,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5566,7 +5499,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5696,7 +5628,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6043,7 +5974,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6149,7 +6079,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6331,7 +6260,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6384,12 +6312,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6409,10 +6334,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6449,7 +6371,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6461,11 +6383,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6487,7 +6409,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6715,12 +6637,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6730,21 +6649,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6822,8 +6733,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6835,12 +6744,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6850,11 +6757,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6966,7 +6871,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6996,7 +6900,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7212,8 +7120,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7225,13 +7132,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7251,7 +7153,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7260,13 +7162,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7281,10 +7181,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7294,7 +7192,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7326,14 +7224,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7347,7 +7244,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7374,13 +7271,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7401,7 +7296,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7484,7 +7378,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7528,7 +7422,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7570,7 +7464,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7621,15 +7515,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7693,7 +7578,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7730,7 +7615,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7773,13 +7658,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7801,31 +7684,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7842,7 +7725,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7858,7 +7740,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7885,7 +7766,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7945,8 +7826,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8082,7 +7961,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8263,7 +8142,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8284,17 +8163,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8314,13 +8191,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8338,7 +8213,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8403,7 +8278,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8414,7 +8288,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8535,11 +8408,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8590,12 +8463,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8604,15 +8477,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8713,7 +8586,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8769,7 +8642,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8847,6 +8719,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8861,6 +8745,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8998,7 +8887,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9014,7 +8903,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9351,8 +9239,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9410,12 +9296,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9469,6 +9353,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9545,7 +9440,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9581,11 +9476,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9593,7 +9488,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9647,7 +9541,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9678,7 +9571,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9692,7 +9584,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9727,7 +9618,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9772,7 +9662,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9863,7 +9752,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9950,7 +9838,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10016,7 +9914,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10025,21 +9922,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10058,11 +9940,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10071,11 +9967,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10096,7 +9987,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10106,7 +9996,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10164,7 +10053,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10218,44 +10106,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10271,7 +10148,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10313,7 +10189,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10511,9 +10386,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10525,7 +10398,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10546,7 +10418,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10711,7 +10582,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10730,7 +10600,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10841,7 +10710,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11565,8 +11433,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11626,12 +11492,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11769,7 +11633,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11917,7 +11780,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11982,7 +11844,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12012,24 +11873,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12097,7 +11950,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12211,7 +12063,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12224,7 +12075,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12236,12 +12086,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12263,22 +12111,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12460,7 +12302,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12495,12 +12336,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12513,12 +12352,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12599,7 +12436,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12638,19 +12474,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12992,7 +12825,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13014,7 +12846,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13198,15 +13029,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13313,7 +13139,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13339,19 +13164,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13406,12 +13228,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13424,14 +13244,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13703,7 +13520,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13711,19 +13527,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13744,7 +13557,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13755,19 +13567,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13785,7 +13594,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13858,7 +13666,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13874,15 +13681,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14106,7 +13908,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14119,7 +13920,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14175,7 +13975,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14190,9 +13989,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14293,8 +14089,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14314,8 +14109,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14385,7 +14179,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14420,7 +14214,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14433,7 +14226,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14556,7 +14349,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14566,7 +14359,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14576,8 +14368,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14652,7 +14442,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14667,7 +14457,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14722,7 +14511,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14781,8 +14570,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14801,11 +14590,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14869,7 +14658,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14911,7 +14699,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15039,8 +14827,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15084,13 +14871,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15113,10 +14898,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15165,8 +14955,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15188,7 +14978,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15233,7 +15023,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15275,7 +15064,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15376,7 +15165,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15507,8 +15296,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15524,7 +15312,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15563,7 +15351,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15573,7 +15361,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15604,7 +15392,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15634,7 +15422,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15679,7 +15467,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15700,7 +15488,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15708,7 +15496,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15720,7 +15508,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15772,7 +15560,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15780,7 +15568,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15840,7 +15628,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15894,7 +15682,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15947,13 +15735,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16192,7 +15978,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16251,8 +16036,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16335,7 +16119,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16561,7 +16344,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16613,8 +16395,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16794,7 +16575,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16834,7 +16615,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16854,12 +16635,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16884,7 +16663,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16900,7 +16679,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16947,11 +16726,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17305,11 +17084,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/kn/LC_MESSAGES/djangojs.mo b/conf/locale/kn/LC_MESSAGES/djangojs.mo index c441630704..2e401d17e1 100644 Binary files a/conf/locale/kn/LC_MESSAGES/djangojs.mo and b/conf/locale/kn/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/kn/LC_MESSAGES/djangojs.po b/conf/locale/kn/LC_MESSAGES/djangojs.po index 0627ae49fe..7ee57c44de 100644 --- a/conf/locale/kn/LC_MESSAGES/djangojs.po +++ b/conf/locale/kn/LC_MESSAGES/djangojs.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -82,8 +81,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -91,17 +88,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1736,7 +1713,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1746,13 +1722,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1782,8 +1754,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2070,12 +2040,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2115,7 +2083,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2124,32 +2091,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2250,7 +2211,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2263,7 +2223,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2451,7 +2410,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2464,10 +2422,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2478,12 +2432,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2737,7 +2685,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2831,7 +2778,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2901,6 +2848,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2922,7 +2873,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2930,7 +2881,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3098,6 +3049,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3144,18 +3103,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3164,7 +3111,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3198,7 +3144,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3209,7 +3155,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3308,8 +3253,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3518,7 +3463,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3576,8 +3520,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3617,17 +3589,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3636,11 +3597,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3715,8 +3671,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3821,7 +3776,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3860,7 +3814,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3888,7 +3841,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4003,14 +3955,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4119,7 +4066,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4287,7 +4233,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4345,6 +4290,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4516,6 +4465,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4794,7 +4751,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4862,6 +4818,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4872,10 +4842,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4901,12 +4879,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5006,7 +4982,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5077,10 +5052,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5213,7 +5184,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5292,7 +5262,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5346,7 +5315,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5466,15 +5434,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5484,11 +5446,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5504,7 +5463,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5529,8 +5487,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5557,8 +5513,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.mo b/conf/locale/ko_KR/LC_MESSAGES/django.mo index 19667c3d1f..18d8bfa71d 100644 Binary files a/conf/locale/ko_KR/LC_MESSAGES/django.mo and b/conf/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.po b/conf/locale/ko_KR/LC_MESSAGES/django.po index 662e86d61a..9dc400502f 100644 --- a/conf/locale/ko_KR/LC_MESSAGES/django.po +++ b/conf/locale/ko_KR/LC_MESSAGES/django.po @@ -77,7 +77,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-05 01:00+0000\n" "Last-Translator: Kevin Min \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" @@ -108,12 +108,11 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -126,7 +125,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -154,10 +152,8 @@ msgstr "" #: lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "이름" @@ -249,6 +245,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -269,7 +341,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -326,6 +398,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -436,102 +515,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -590,7 +573,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1023,7 +1006,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1036,7 +1019,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1075,7 +1058,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1083,7 +1066,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1122,13 +1105,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1160,17 +1141,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1213,7 +1192,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1364,7 +1342,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1396,7 +1373,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1448,7 +1424,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1477,7 +1452,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1618,8 +1592,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2134,12 +2106,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2258,9 +2224,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2497,7 +2460,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "소개" @@ -2573,8 +2535,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3144,7 +3104,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3389,7 +3349,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3532,7 +3491,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3580,7 +3538,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3618,7 +3575,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3915,19 +3871,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4033,6 +3985,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4081,7 +4049,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4140,7 +4107,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4209,7 +4176,7 @@ msgstr "" msgid "username" msgstr "사용자이름" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4239,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4274,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4308,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4320,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4461,7 +4414,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "이메일" @@ -4569,18 +4521,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4611,7 +4559,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4719,7 +4666,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4786,8 +4732,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4841,7 +4787,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4900,7 +4845,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5149,7 +5093,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5199,7 +5142,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5289,8 +5232,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5383,7 +5325,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5412,14 +5353,11 @@ msgstr "통화" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5512,7 +5450,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5549,7 +5487,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5679,7 +5616,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6025,7 +5961,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "사진 촬영" @@ -6131,7 +6066,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6312,7 +6246,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6363,10 +6296,7 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/help_modal.html lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html @@ -6387,10 +6317,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6427,7 +6354,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6439,11 +6366,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6465,7 +6392,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6693,12 +6620,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6708,21 +6632,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6794,8 +6710,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6804,12 +6718,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "서비스 조항 및 명예 신조" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6819,11 +6731,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6935,7 +6845,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6965,7 +6874,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7181,8 +7094,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7194,13 +7106,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7220,7 +7127,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7229,13 +7136,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7250,10 +7155,8 @@ msgstr "강좌" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "이메일" @@ -7263,7 +7166,7 @@ msgstr "이메일" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "예: username@domain.com" @@ -7295,14 +7198,13 @@ msgstr "예: Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "예: JaneDoe" @@ -7316,7 +7218,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "세부사항" @@ -7343,13 +7245,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7370,7 +7270,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7453,7 +7352,7 @@ msgstr "새로운" msgid "Dashboard" msgstr "상황판" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "편집" @@ -7497,7 +7396,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "암호 재설정" @@ -7505,7 +7404,7 @@ msgstr "암호 재설정" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7539,7 +7438,7 @@ msgid "" "your password." msgstr "이메일이 {email}로 보내어졌습니다. 암호를 변경하기 위해 이메일에 있는 링크를 따라가세요." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "이메일 변경" @@ -7590,15 +7489,6 @@ msgstr "내 이름 변경" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "등록취소" @@ -7662,7 +7552,7 @@ msgstr "학생이 거절되었습니다:" msgid "Debug: " msgstr "디버그:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "외부 인증 실패" @@ -7699,7 +7589,7 @@ msgstr "제출함" msgid "Puzzle Leaderboard" msgstr "퍼즐 순위표" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7742,13 +7632,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "연락처" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "자주하는 질문" @@ -7770,31 +7658,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7811,7 +7699,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "직업" @@ -7827,7 +7714,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "암호 재설정" @@ -7854,7 +7740,7 @@ msgstr "내 암호 재설정" msgid "Email is incorrect." msgstr "이메일이 틀립니다" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} 도움말" @@ -7919,8 +7805,6 @@ msgstr "오류메세지, 문제 발생으로 가는 단계 등을 포함하세 #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8059,7 +7943,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "도움되는 정보" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "오픈아이디로 로그인" @@ -8249,7 +8133,7 @@ msgstr "가공되지 않은 데이터:" msgid "Accepted" msgstr "승인됨" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "오류" @@ -8270,17 +8154,15 @@ msgstr "확인" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "어떻게 동작하는지" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "강좌 찾기" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8300,13 +8182,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "등록" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8324,7 +8204,7 @@ msgstr "전역 찾아가기" msgid "Schools" msgstr "학교" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "지금 등록하세요" @@ -8389,7 +8269,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8400,7 +8279,6 @@ msgid "Enter a public username:" msgstr "공개 사용자 이름을 입력하세요:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "참가하는 토론이나 포럼에서 보여질 것입니다." @@ -8529,11 +8407,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "계정에 등록하기 위해서는 다음 항목들을 입력하십시요." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "획득하는 모든 수료증에 필요" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "나중에 변경할 수 없습니다." @@ -8584,12 +8462,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "이전" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "다음" @@ -8598,15 +8476,15 @@ msgstr "다음" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "예) yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "예) 당신의 이름(포럼에 표시된)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "예: 당신의 이름(이수증용)" @@ -8707,7 +8585,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "학생 제출 재채점" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "모듈 필드" @@ -8763,7 +8641,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8841,6 +8718,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8855,6 +8744,11 @@ msgstr "날짜" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8998,7 +8892,7 @@ msgstr "" msgid "Download video" msgstr "비디오 다운로드" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9014,7 +8908,6 @@ msgstr "당신의 단어들:" msgid "Total number of words:" msgstr "전체 단어수:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "계산기 열기" @@ -9351,8 +9244,6 @@ msgstr "{chapter}, 현재 장" msgid "due {date}" msgstr "마감일 {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9410,12 +9301,10 @@ msgstr "개요" msgid "Share with friends and family!" msgstr "친구 및 가족과 공유" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9469,6 +9358,17 @@ msgstr "" msgid "Additional Resources" msgstr "추가 자원" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "등록" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9545,7 +9445,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9581,11 +9481,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "강좌 업데이트 & 새소식" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "유인물 찾아가기" @@ -9593,7 +9493,6 @@ msgstr "유인물 찾아가기" msgid "Course Handouts" msgstr "강좌 유인물" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9647,7 +9546,6 @@ msgstr "그룹 관리" msgid "Grade Downloads" msgstr "성적 다운로드" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9678,7 +9576,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "정상적으로 동작하기 위해 이 강좌에 제시 된 과제는 성적부에 저장된 것과 일치해야 합니다!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "성적부 이름:" @@ -9692,7 +9589,6 @@ msgstr "과제 이름:" msgid "Course-specific grade adjustment" msgstr "강좌에 따른 성적 조정" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9727,7 +9623,6 @@ msgstr "등록 데이터" msgid "Pull enrollment from remote gradebook" msgstr "원격 성적부에서 등록 가져오기" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "섹션:" @@ -9772,7 +9667,6 @@ msgstr "일" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "학생" @@ -9863,7 +9757,6 @@ msgstr "기간(초)" msgid "Task Progress" msgstr "작업 진행상황" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "알수없음" @@ -9950,7 +9843,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "학생 '{username}' ({email})의 강좌 진도" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10016,7 +9919,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "pdf 문서를 열거나 다운로드하기 위한 링크입니다." @@ -10025,21 +9927,6 @@ msgstr "pdf 문서를 열거나 다운로드하기 위한 링크입니다." msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10058,11 +9945,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "강좌 피드백 조사를 완료해 주십시요." +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} 표지 이미지" @@ -10071,11 +9972,6 @@ msgstr "{course_number} {course_name} 표지 이미지" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "등록된 역할:" @@ -10096,7 +9992,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10106,7 +10001,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10164,7 +10058,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10218,44 +10111,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "저장된 강좌 보기" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "강좌 보기" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "이메일 설정" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10271,7 +10153,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10313,7 +10194,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10511,9 +10391,7 @@ msgstr "게시글 편집" msgid "Edit post title" msgstr "게시 제목 편집" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10525,7 +10403,6 @@ msgstr "게시글 업데이트" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "코멘트 추가" @@ -10546,7 +10423,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10711,7 +10587,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10730,7 +10605,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10841,7 +10715,6 @@ msgstr "포럼이 현재 유지 관리 중입니다. 잠시후에 사용할 수 msgid "User Profile" msgstr "사용자 정보" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11570,8 +11443,6 @@ msgstr "추후 검토하기 위해 부적절한 콘텐츠로 표시" msgid "Skip" msgstr "건너뛰기" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11631,12 +11502,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11774,7 +11643,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11922,7 +11790,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11987,7 +11854,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12017,24 +11883,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "여기에 {platform_name} 이메일 주소 혹은 학생의 사용자이름을 입력합니다" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "학생 이메일 혹은 사용자 이름" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12102,7 +11960,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12216,7 +12073,6 @@ msgstr "문제 목록 로딩 ..." msgid "Gender Distribution" msgstr "성별 분포" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "강사 상황판" @@ -12229,7 +12085,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "일괄 등록" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12241,12 +12096,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "자동 등록" @@ -12268,22 +12121,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "등록" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12470,7 +12317,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12505,12 +12351,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12523,12 +12367,10 @@ msgstr "수신자:" msgid "Myself" msgstr "나" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "담당직원 및 교수자" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "모두 (학생, 담당직원 및 교수자)" @@ -12609,7 +12451,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12648,19 +12489,16 @@ msgstr "학생 진도 페이지" msgid "Student-specific grade adjustment" msgstr "학생별 성적 조정" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12844,6 @@ msgstr "입력한 이메일 주소로 암호를 설정하기 위한 안내를 #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12865,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13212,15 +13048,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13327,7 +13158,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13353,19 +13183,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13422,12 +13249,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13440,14 +13265,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13719,7 +13541,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13727,19 +13548,16 @@ msgstr "사진이 보이지 않습니까? 카메라 사용을 위한 브라우 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "다시 촬영" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "좋게 보입니다." #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "좋은 사진 촬영법" @@ -13760,7 +13578,6 @@ msgstr "당신의 사진이 아이디에 있는 사진과 동일인물 입니까 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "지금의 위치에서 카메라 버튼을 사용합니다." @@ -13771,19 +13588,16 @@ msgstr "사진 캡쳐를 위하여" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "확인표시 버튼을 사용하세요" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "사진이 마음에 들길 바랍니다." #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "공통 질문들" @@ -13801,7 +13615,6 @@ msgstr "확인 과정의 하나로 신분 확인하기 위해 당신의 사진 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "이 사진으로 무엇을 하실것인가요?" @@ -13874,7 +13687,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13890,15 +13702,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14124,7 +13931,6 @@ msgid "" "below." msgstr "사진을 확인하고 아래의 요청사항과 맞는지 검토하세요." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "이 사진은 아래의 요청사항과 맞춰볼 필요가 있습니다:" @@ -14137,7 +13943,6 @@ msgstr "정상" msgid "Show your whole face" msgstr "전체 얼굴 표시" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "ID의 사진과 얼굴이 일치해야합니다." @@ -14193,7 +13998,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14208,9 +14012,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14311,8 +14112,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14332,8 +14132,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14403,7 +14202,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14438,7 +14237,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14451,7 +14249,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14574,7 +14372,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14584,7 +14382,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14594,8 +14391,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14670,7 +14465,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14685,7 +14480,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14740,7 +14534,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14799,8 +14593,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14819,11 +14613,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14887,7 +14681,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14929,7 +14722,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15057,8 +14850,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15102,13 +14894,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15131,10 +14921,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15183,8 +14978,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15206,7 +15001,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15251,7 +15046,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15293,7 +15087,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15394,7 +15188,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15525,8 +15319,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15542,7 +15335,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15581,7 +15374,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15591,7 +15384,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15622,7 +15415,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15652,7 +15445,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15697,7 +15490,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15718,7 +15511,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15726,7 +15519,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15738,7 +15531,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15790,7 +15583,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15798,7 +15591,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15858,7 +15651,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15912,7 +15705,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15965,13 +15758,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16210,7 +16001,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16269,8 +16059,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16353,7 +16142,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16579,7 +16367,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16631,8 +16418,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16812,7 +16598,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16852,7 +16638,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16872,12 +16658,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16902,7 +16686,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16918,7 +16702,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16965,11 +16749,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17323,11 +17107,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo index 992651f351..dc1c9be8e3 100644 Binary files a/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo and b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po b/conf/locale/ko_KR/LC_MESSAGES/djangojs.po index b43d4563e0..9c7f1f62e8 100644 --- a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po +++ b/conf/locale/ko_KR/LC_MESSAGES/djangojs.po @@ -46,8 +46,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -100,8 +99,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -109,17 +106,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -210,7 +204,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -218,7 +211,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -239,7 +231,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -258,7 +249,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -322,11 +312,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -334,7 +322,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -345,21 +332,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1230,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1244,7 +1227,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1581,18 +1563,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1710,7 +1688,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1754,7 +1731,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1764,13 +1740,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1800,8 +1772,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2088,12 +2058,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3116,6 +3067,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3162,18 +3121,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3182,7 +3129,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3216,7 +3162,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3227,7 +3173,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3326,8 +3271,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3536,7 +3481,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3594,8 +3538,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3635,17 +3607,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3654,11 +3615,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3733,8 +3689,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3839,7 +3794,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3878,7 +3832,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3906,7 +3859,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4021,14 +3973,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4137,7 +4084,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4305,7 +4251,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4363,6 +4308,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4534,6 +4483,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4812,7 +4769,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4880,6 +4836,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4890,10 +4860,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4919,12 +4897,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5024,7 +5000,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5095,10 +5070,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5231,7 +5202,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5310,7 +5280,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5364,7 +5333,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5484,15 +5452,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5502,11 +5464,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5522,7 +5481,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5547,8 +5505,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5575,8 +5531,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.mo b/conf/locale/lt_LT/LC_MESSAGES/django.mo index 64245a3849..5b1a1cf748 100644 Binary files a/conf/locale/lt_LT/LC_MESSAGES/django.mo and b/conf/locale/lt_LT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.po b/conf/locale/lt_LT/LC_MESSAGES/django.po index 8e09a8501a..16e6cdc948 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/django.po +++ b/conf/locale/lt_LT/LC_MESSAGES/django.po @@ -26,7 +26,7 @@ # # Translators: # Riina , 2014-2015 -# Edukometrija , 2014 +# Edukometrija , 2014-2015 # Erikas Stanys , 2014 # evutte , 2014 # Gediminas Trakas , 2013-2014 @@ -41,7 +41,7 @@ # # Translators: # Riina , 2014-2015 -# Edukometrija , 2014 +# Edukometrija , 2014-2015 # Gediminas Trakas , 2013 # Žygimantas Medelis , 2013 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# @@ -67,7 +67,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Edukometrija \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" @@ -95,7 +95,7 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Diskusija" @@ -111,7 +111,6 @@ msgstr "Sudėtingesnis" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py msgid "Section" msgstr "Tema" @@ -134,8 +133,6 @@ msgstr "Užbaigta" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py msgid "Name" msgstr "Vardas" @@ -226,6 +223,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Naudotojo vardą turi sudaryti mažiausiai du simboliai" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Būtinas tinkamas el. pašto formatas" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Būtinas tinkamas slaptažodis" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Jūsų oficialų vardą turi sudaryti mažiausiai du simboliai" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Naudotojo vardas turi būti sudarytas tik iš A-Ž ir 0-9 simbolių, ir negali " +"turėti tarpų." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Jūs turite sutikti su paslaugos teikimo sąlygomis." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Būtina nurodyti išsilavinimo lygį" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Būtina nurodyti lytį" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Būtina nurodyti gimimo metus" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Būtina nurodyti pašto adresą" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Būtinas jūsų tikslų aprašymas" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Būtina nurodyti miestą" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Būtina nurodyti šalį" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Registracijai privalote patvirtinti sąžiningumo deklaraciją." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Praleidote vieną ar daugiau privalomų laukų" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Naudotojo vardo ir slaptažodžio laukai negali sutapti" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Slaptažodis:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -248,7 +323,7 @@ msgstr "Moteris" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Kita" @@ -304,6 +379,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -429,104 +511,6 @@ msgstr "Paskyra su naudotojo vardu '{username}' jau egzistuoja." msgid "An account with the Email '{email}' already exists." msgstr "Paskyra su '{email}' jau egzistuoja." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Klaida (401 {field}). Susisiekite su mumis el. paštu." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Registracijai privalote patvirtinti sąžiningumo deklaraciją." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Jūs turite sutikti su paslaugos teikimo sąlygomis." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Naudotojo vardą turi sudaryti mažiausiai du simboliai" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Būtinas tinkamas el. pašto formatas" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Jūsų oficialų vardą turi sudaryti mažiausiai du simboliai" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Būtinas tinkamas slaptažodis" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Būtina sutikti su paslaugų teikimo sąlygomis" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Būtina pritarti Sąžiningumo deklaracijai" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Būtina nurodyti išsilavinimo lygį" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Būtina nurodyti lytį" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Būtina nurodyti gimimo metus" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Būtina nurodyti pašto adresą" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Būtinas jūsų tikslų aprašymas" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Būtina nurodyti miestą" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Būtina nurodyti šalį" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Praleidote vieną ar daugiau privalomų laukų" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "Naudotojo vardas negali būti ilgesnis nei {num} simbolių" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "El. pašto adresas negali būti ilgesnis nei {num} simbolių" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Būtinas teisingas el. pašto adresas." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Naudotojo vardas turi būti sudarytas tik iš A-Ž ir 0-9 simbolių, ir negali " -"turėti tarpų." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Slaptažodis:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Naudotojo vardo ir slaptažodžio laukai negali sutapti" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Nepavyko išsiųsti aktyvavimo žinutės el. paštu." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -604,7 +588,7 @@ msgstr "" msgid "Name required" msgstr "Būtinas vardas" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Neteisingas identifikacijos numeris" @@ -1042,7 +1026,7 @@ msgstr "neteisingas" msgid "incomplete" msgstr "nebaigta" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "neatsakyta" @@ -1055,7 +1039,7 @@ msgstr "vykdoma" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: netikėta žyma {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Atsakymas priimtas." @@ -1100,7 +1084,7 @@ msgstr "Kodo klaida" msgid "Cannot connect to the queue" msgstr "Nepavyksta prisijungti prie eilės" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Nenurodyta formulė." @@ -1108,7 +1092,7 @@ msgstr "Nenurodyta formulė." msgid "Couldn't parse formula: {error_msg}" msgstr "Nepavyko išanalizuoti formulės: {error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Klaida pateikiant peržiūrą" @@ -1147,13 +1131,11 @@ msgstr "Neleidžiama vykdyti nesaugaus \"Javascript\" kodo." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1186,17 +1168,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Klaida." @@ -1240,7 +1220,6 @@ msgstr "Klaida: nenurodyta intervalo riba." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1396,7 +1375,6 @@ msgstr "XML duomenys komentarui" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1427,7 +1405,6 @@ msgstr "Komentaras" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" "Šis pavadinimas matomas horizontalioje naršymo juostoje puslapio viršuje." @@ -1486,7 +1463,6 @@ msgstr "" "Apibrėžia, kada rodyti užduoties atsakymą. Numatytąją vertę galima nustatyti" " papildomose nuostatose." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Visada" @@ -1515,7 +1491,6 @@ msgstr "Teisinga arba praėjusi pateikimo data" msgid "Past Due" msgstr "Pradelsta" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Niekada" @@ -1669,8 +1644,6 @@ msgstr "Jei ši klaida kartojasi, prašome susisiekti su kurso personalu." #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Užduočiai skirtas laikas baigėsi." @@ -2269,12 +2242,6 @@ msgstr "Sukurkite savo pirmąją temą ir potemę" msgid "Use your course outline to build your first Section and Subsection." msgstr "Naudodamiesi savo kurso planu sukurkite pirmąją temą ir potemę." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Redaguoti kurso planą" @@ -2408,9 +2375,6 @@ msgstr "" "jo aprašas ir kita. Sukurkite tekstą, kurį skaitys kurso dalyviai prieš " "nuspręsdami užsirašyti į jūsų kursą." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Redaguoti kurso tvarkaraščio & informaciją" @@ -2772,8 +2736,6 @@ msgstr "" msgid "Text" msgstr "Tekstas" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3424,7 +3386,7 @@ msgid "Wiki" msgstr "Vikis" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Vadovėliai" @@ -3862,7 +3824,6 @@ msgstr "Lektoriaus vertinimas" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Automatinis vertinimas" @@ -3914,7 +3875,6 @@ msgstr "Neįmanoma jūsų atsakymo pateikti vertintojui. Prašome bandyti vėlia #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Klaida gaunant vertintojo atsiliepimą." @@ -3953,7 +3913,6 @@ msgstr "Vykdoma" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Atlikta" @@ -4305,11 +4264,9 @@ msgstr "Paieška" msgid "Copyright" msgstr "Autorinės teisės" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py msgid "Username" msgstr "Naudotojo vardas" @@ -4423,6 +4380,22 @@ msgid "User {username} has never accessed problem {location}" msgstr "" "Naudotojas {username} niekada neperskaitė užduoties {location} sąlygos" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "KLAIDA: Rodymui skirtų vaizdų nerasta!" @@ -4534,7 +4507,7 @@ msgstr "nustatytas slaptažodis" msgid "All ok!" msgstr "Viskas gerai!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Turite nurodyti naudotojo vardą" @@ -4600,11 +4573,11 @@ msgstr "Iš viso naudotojų" msgid "Courses loaded in the modulestore" msgstr "Kursai įkelti į modulių saugyklą" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "username" msgstr "naudotojo vardas" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "el. paštas" @@ -4673,9 +4646,8 @@ msgstr "Sėkmingai pereita prie {branch_name} šakos" msgid "Loaded course {course_name}
Errors:" msgstr "Įkeltas kursas {course_name}
Klaidos:" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "Kurso pavadinimas" @@ -4709,7 +4681,7 @@ msgstr "Klaida – neįmanoma pasiekti kurso, kurio ID {0}
{1}
" msgid "Deleted" msgstr "Pašalinta" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "kurso_id" @@ -4743,22 +4715,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Iš naujo atidaryti giją" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Uždaryti giją" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Pavadinimo vieta negali būti tuščia" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Pagrindinio teksto vieta negali būti tuščia" @@ -4767,7 +4727,6 @@ msgstr "Pagrindinio teksto vieta negali būti tuščia" msgid "Topic doesn't exist" msgstr "Tema neegzistuoja" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Komentaras sunkiai suprantamas" @@ -4875,8 +4834,6 @@ msgstr "Naudotojo identifikacijos numeris" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "Email" msgstr "El. paštas" @@ -5003,18 +4960,14 @@ msgstr "Sėkmingai atnaujinta kurso dalyvio {0} pateikimo data iš {1} į {2}" msgid "coupon id is None" msgstr "Kuponas be identifikacijos numerio" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "kuponas, kurio identifikacijos numeris ({coupon_id}), neegzistuoja" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "kuponas, kurio identifikacijos numeris ({coupon_id}), jau neaktyvus" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -5048,7 +5001,6 @@ msgstr "kuponas, kurio kodas ({code}), sėkmingai pridėtas" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "kuponas, kurio kodas ({code}), šiame kurse jau yra" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "kupono identifikacijos kodas nerastas" @@ -5162,7 +5114,6 @@ msgstr "Prašome įvesti užduoties pavadinimą" msgid "Invalid assignment name '{name}'" msgstr "Neteisingas užduoties pavadinimas \"{name}\"" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Išorinis el. paštas" @@ -5232,8 +5183,8 @@ msgstr "Identifikacijos numeris" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5293,7 +5244,6 @@ msgid "No due date extension is set for that student and unit." msgstr "" "Šiam kurso dalyviui ir skyriui pateikimo datos pratęsimas nenumatytas." -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Atidėta pateikimo data" @@ -5352,7 +5302,6 @@ msgstr "suformuota" msgid "cohorted" msgstr "pogrupis sudarytas" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Nėra informacijos apie būseną" @@ -5621,7 +5570,6 @@ msgid "View submissions that have been flagged by students as inappropriate." msgstr "" "Peržiūrėti pateiktis, kurias kurso dalyviai pažymėjo kaip nekorektiškas." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Naujos pateiktys vertinimui." @@ -5676,7 +5624,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5770,8 +5718,7 @@ msgstr "Auka platformai {platform_name}" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5864,7 +5811,6 @@ msgstr "Apmokėjimo data" msgid "Amount of Refund" msgstr "Apmokėta suma" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Aptarnavimo mokesčiai (jeigu yra)" @@ -5893,12 +5839,10 @@ msgstr "Valiuta" msgid "Comments" msgstr "Komentarai" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Universitetas" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Kursas" @@ -5995,7 +5939,7 @@ msgstr "" msgid "Course added to cart." msgstr "Kursas įdėtas į krepšelį" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -6034,7 +5978,6 @@ msgstr "Jums nesuteikta teisė peržiūrėti šio puslapio." msgid "The payment processor did not return a required parameter: {0}" msgstr "Mokėjimo apdorojimo sistema negrąžino reikalaujamo parametro: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6194,7 +6137,6 @@ msgstr "" "Sąskaitoje nepakanka lėšų. Galimas sprendimas – bandykite kitą atsiskaitimo " "būdą." -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Nežinoma priežastis" @@ -6608,7 +6550,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6714,7 +6655,6 @@ msgstr "Atliktas laikas:" msgid "Refund Request Time:" msgstr "Prašymo apmokėti laikas:" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Slaptažodžio atnaujinimas baigtas" @@ -6913,7 +6853,6 @@ msgstr "Pašalinti straipsnį" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Pašalinti" @@ -6974,7 +6913,7 @@ msgid "Preview" msgstr "Peržiūra" #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/wiki/includes/cheatsheet.html msgid "Close" msgstr "Uždaryti" @@ -6983,7 +6922,7 @@ msgid "Wiki Preview" msgstr "Vikio peržiūra" #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/wiki/includes/cheatsheet.html msgid "window open" msgstr "langas atidarytas" @@ -7023,7 +6962,7 @@ msgstr "Automatinis žurnalas:" msgid "Change" msgstr "Pakeisti" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Sujungti pasirinktą su einamuoju..." @@ -7035,11 +6974,11 @@ msgstr "Persijungti į pasirinktą versiją" msgid "Wiki Revision Preview" msgstr "Vikio versijos peržiūra" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Atgal į istorijos peržvalgą" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Persijungti į šią versiją" @@ -7064,7 +7003,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Po šio veiksmo būtinai patikrinkite rezultatus." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Sukurti naują sujungtą versiją" @@ -7309,12 +7248,9 @@ msgstr "Negalite sukurti dviejų pogrupių tuo pačiu pavadinimu" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "naudotojovardas@domenas.com" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "Jūs prisiregistravote prie {platform_name} šiuo el. pašto adresu" @@ -7324,24 +7260,13 @@ msgstr "Jūs prisiregistravote prie {platform_name} šiuo el. pašto adresu" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Slaptažodis" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" -"Atrodo, kad {email_address} ir {username} priklauso egzistuojančiai " -"paskyrai. Pabandykite prisiregistruoti kitu el. pašto adresu ir naudotojo " -"vardu." - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7425,12 +7350,10 @@ msgstr "Sąžiningumo deklaracija" msgid "Terms of Service and Honor Code" msgstr "Naudojimosi sąlygos ir sąžiningumo deklaracija" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "Aš sutinku su {platform_name} {terms_of_service}." -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "Jūs privalote sutikti su {platform_name} {terms_of_service}." @@ -7441,7 +7364,6 @@ msgstr "Jūs privalote sutikti su {platform_name} {terms_of_service}." msgid "Terms of Service" msgstr "Naudojimosi sąlygos " -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Neteisingas kurso atnaujinimo identifikacijos numeris." @@ -7553,7 +7475,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7583,7 +7504,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7795,8 +7720,7 @@ msgstr "Puslapis nerastas" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7808,13 +7732,8 @@ msgstr "" msgid "close" msgstr "uždaryti" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7834,7 +7753,7 @@ msgstr "Atsisakyti" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Nustatymai" @@ -7843,13 +7762,11 @@ msgstr "Nustatymai" msgid "Error:" msgstr "Klaida:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organizacija:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7864,10 +7781,8 @@ msgstr "Kursai" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "El. paštas" @@ -7877,7 +7792,7 @@ msgstr "El. paštas" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7909,14 +7824,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7930,7 +7844,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7957,7 +7871,6 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" @@ -7981,7 +7894,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -8064,7 +7976,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -8108,7 +8020,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -8116,7 +8028,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -8150,7 +8062,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -8201,15 +8113,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -8273,7 +8176,7 @@ msgstr "Atmesti kurso dalyviai:" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -8310,7 +8213,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "Apie edX" @@ -8353,13 +8256,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -8381,31 +8282,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8422,7 +8323,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -8438,7 +8338,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "Naudojama Open edX platforma" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -8465,7 +8364,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -8528,8 +8427,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8667,7 +8564,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8850,7 +8747,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8871,17 +8768,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Ieškoti kursų" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8901,13 +8796,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8925,7 +8818,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8990,7 +8883,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9001,7 +8893,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -9133,11 +9024,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -9188,12 +9079,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -9202,15 +9093,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -9311,7 +9202,7 @@ msgstr "Panaikinti kurso dalyvio būseną " msgid "Rescore Student Submission" msgstr "Iš naujo įvertinti kurso dalyvio darbą" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -9367,7 +9258,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -9447,6 +9337,18 @@ msgstr "Pašalinti kursą iš svetainės" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9461,6 +9363,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9598,7 +9505,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9614,7 +9521,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9957,8 +9863,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10016,12 +9920,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -10075,6 +9977,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -10151,7 +10064,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -10187,11 +10100,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Studio aplinkoje peržiūrėti atnaujinimus" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Kurso atnaujinimai & Naujienos" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -10199,7 +10112,6 @@ msgstr "" msgid "Course Handouts" msgstr "Kurso dalijamoji medžiaga" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -10253,7 +10165,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10286,7 +10197,6 @@ msgstr "" "Kad programa tinkamai veiktų, šio kurso užduotys turi atitikti užduotis, " "esančias pažymių knygelėje." -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Pažymių knygelės pavadinimas" @@ -10300,7 +10210,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "Kurso vertinimo koregavimas" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10335,7 +10244,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Tema:" @@ -10380,7 +10288,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Kurso dalyviai" @@ -10471,7 +10378,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10558,7 +10464,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Kurso dalyvio '{username}' ({email}) pažanga" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10586,8 +10502,8 @@ msgid "" "You were most recently in {section_link}. If you're done with that, choose " "another section on the left." msgstr "" -"Pastaruoju metu buvote {section_link}. Jei šią temą baigėte, kairėje " -"pasirinkite kitą." +"Paskutinį kartą buvote atidarę {section_link}. Jei šią temą baigėte, kairėje" +" pasirinkite kitą." #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -10628,7 +10544,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10637,21 +10552,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10670,11 +10570,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "Užpildykite atsiliepimų apie kursą apklausą" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Viršelio nuotrauka" @@ -10683,11 +10597,6 @@ msgstr "{course_number} {course_name} Viršelio nuotrauka" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10708,7 +10617,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10718,7 +10626,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Jūs esate užsiregistravęs kaip sąžiningumą deklaravęs kurso dalyvis" @@ -10778,7 +10685,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10832,44 +10738,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Peržiūrėti archyvuotus kursus" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Peržiūrėti kursą" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10885,7 +10780,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10929,7 +10823,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -11129,7 +11022,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: wiki/forms.py wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Title" msgstr "Pavadinimas" @@ -11141,7 +11034,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -11162,7 +11054,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11255,7 +11146,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Upvote posts and good responses" -msgstr "" +msgstr "Balsuoti už įrašus ir atsakymus" #: lms/templates/discussion/_underscore_templates.html msgid "Report Forum Misuse" @@ -11327,7 +11218,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11346,7 +11236,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11461,7 +11350,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -12203,8 +12091,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12264,12 +12150,10 @@ msgstr "Kurso rodomas pavadinimas:" msgid "Has the course started?" msgstr "Ar šis kursas jau prasidėjo?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -12419,7 +12303,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12567,7 +12450,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12632,7 +12514,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12666,9 +12547,6 @@ msgstr "" "pridavimo terminui paankstinti." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -12677,15 +12555,10 @@ msgstr "" "vartotojo vardą:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Kurso dalyvio el. paštas arba naudotojo vardas" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Pasirinkite įvertintą skyrių:" @@ -12761,7 +12634,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12875,7 +12747,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12888,7 +12759,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12900,12 +12770,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12927,22 +12795,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -13146,7 +13008,6 @@ msgstr "" "Spustelėję ant bet kurio iš mygtukų, pamatysite kurso dalyvių, atidariusių " "potemę, sąrašą." -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -13181,14 +13042,12 @@ msgstr "Atsisiųsti pradėjusių kurso dalyvių failą CSV formatu" msgid "Download Student Grades as a CSV" msgstr "Atsisiųsti kurso dalyvių įvertinimo failą CSV formatu" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" "Tai yra dalinis sąrašas, norėdami peržiūrėti visus kurso dalyvius, " "atsisiųskite failą CSV formatu." -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -13201,12 +13060,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Visiems (kursų dalyviams, personalui ir lektoriams)" @@ -13291,7 +13148,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13335,19 +13191,16 @@ msgstr "Kursų dalyvio pažangos puslapis" msgid "Student-specific grade adjustment" msgstr "Kurso dalyvio vertinimo koregavimas" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13700,7 +13553,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13722,7 +13574,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13908,15 +13759,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -14023,7 +13869,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -14049,19 +13894,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -14116,12 +13958,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -14134,14 +13974,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -14415,7 +14252,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14423,19 +14259,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -14456,7 +14289,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -14467,19 +14299,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -14497,7 +14326,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -14570,7 +14398,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14586,15 +14413,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14824,7 +14646,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14837,7 +14658,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14893,7 +14713,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14908,9 +14727,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -15011,8 +14827,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Failai & Įkėlimai" @@ -15032,8 +14847,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Įkelti naują failą" @@ -15103,7 +14917,7 @@ msgstr "Jūsų failas buvo pašalintas." msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -15140,7 +14954,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -15153,7 +14966,7 @@ msgid "Delete this component" msgstr "Pašalinti šį komponentą" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -15278,7 +15091,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -15288,7 +15101,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -15298,8 +15110,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15374,7 +15184,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -15393,7 +15203,6 @@ msgstr "" "tvarkaraščio pokyčius ir atsakykite į kurso dalyvių klausimus. Atnaujinimus " "pridedate ir redaguojate HTML aplinkoje." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15448,7 +15257,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15517,8 +15326,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15537,11 +15346,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15610,7 +15419,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15652,7 +15460,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15780,8 +15588,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15825,13 +15632,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15854,10 +15659,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15909,8 +15719,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15932,7 +15742,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15979,7 +15789,6 @@ msgstr "" "Kurkite ir perduokite temas kurso dalyviams pakopa po " "pakopos. Neprivalote būti padarę visko iš karto." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -16025,7 +15834,7 @@ msgstr "" "Tai ne vien tik pasirenkamojo atsakymo tipo užduotys. Studio aplinkoje yra " "daugiau kaip tuzinas užduočių tipų, kurie bus iššūkis besimokantiesiems." -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -16128,7 +15937,7 @@ msgstr "" "Kurso dalyviai negalės matyti šio komponento. Paredaguokite jį ir " "ištaisykite klaidą." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -16268,8 +16077,7 @@ msgstr "" "susiję su tais uždavinių komponentais, gali būti prarasti. Šie duomenys " "apima kurso dalyvių uždavinių įvertinimus." -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -16285,7 +16093,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -16324,7 +16132,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -16334,7 +16142,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -16365,7 +16173,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16395,7 +16203,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16440,7 +16248,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16461,7 +16269,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16469,7 +16277,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16481,7 +16289,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16519,7 +16327,7 @@ msgstr "" #: cms/templates/index.html msgid "New to {studio_name}?" -msgstr "" +msgstr "{studio_name} aplinkoje esate naujokas?" #: cms/templates/index.html msgid "" @@ -16528,12 +16336,16 @@ msgid "" " of the page to access our continously updated documentation and other " "{studio_name} resources." msgstr "" +"Norėdami gauti daugiau informacijos apie {studio_name} puslapį, kurį " +"žiūrite, spragtelėkite \"Pagalba\" dešiniajame viršutiniame kampe. Taip pat " +"galite pasinaudoti puslapio apačioje esančiomis nuorodomis, jeigu norite " +"gauti mūsų nuolat atnaujinamus dokumentus ir kitus {studio_name} išteklius." #: cms/templates/index.html msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16541,7 +16353,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16601,7 +16413,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16655,7 +16467,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16708,13 +16520,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16958,7 +16768,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -17017,8 +16826,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -17103,7 +16911,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -17346,7 +17153,6 @@ msgstr "" "darbai, apklausos ir egzaminai ir nurodyti, kiek kiekvieno tipo užduotis yra" " verta." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -17403,8 +17209,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "Sužinoti daugiau apie vadovėlius" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17584,7 +17389,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17624,7 +17429,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17644,12 +17449,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17674,7 +17477,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17690,7 +17493,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17742,11 +17545,11 @@ msgstr "" "sudėtingesnėmis galimybėmis, pavyzdžiui, pridėti papildinių, metaduomenų, " "susijusių straipsnių ir t. t. " -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Turinys" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Santrauka" @@ -18128,11 +17931,11 @@ msgstr "priedų pataisos" msgid "%s was successfully added." msgstr "%s sėkmingai pridėta." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Jūsų failas negali būti išsaugotas: %s " -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo index 6383fd81a0..8639e2f379 100644 Binary files a/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo and b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po index d4bbbf95fa..a9b3939bed 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po +++ b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po @@ -39,8 +39,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -92,8 +91,6 @@ msgstr "Ši nuoroda atvers puslapį naujame naršyklės lange/kortelėje" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Nežinoma" @@ -101,17 +98,14 @@ msgstr "Nežinoma" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Pašalinti" @@ -193,7 +187,6 @@ msgstr[0] "(galima gauti %(num_points)s tašką)" msgstr[1] "(galima gauti %(num_points)s tašką)" msgstr[2] "(galima gauti %(num_points)s taškus)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Atsakymas:" @@ -201,7 +194,6 @@ msgstr "Atsakymas:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Slėpti atsakymą" @@ -222,7 +214,6 @@ msgstr "Atsakymas paslėptas" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "neatsakyta" @@ -241,7 +232,6 @@ msgstr "Prieš pateikdami turite pasirinkti įvertinimą." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Jūsų rezultatas nepakankamas, kad galėtumėte pereiti į kitą pakopą." @@ -314,11 +304,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Rodyti klausimą" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Slėpti klausimą" @@ -326,7 +314,6 @@ msgstr "Slėpti klausimą" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Pastraipa" @@ -337,21 +324,18 @@ msgstr "Iš anksto suformatuota" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "1 pavadinimas" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "2 pavadinimas" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "3 pavadinimas" @@ -1206,7 +1190,6 @@ msgstr "Pašalinti nuorodą" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Keisti viską" @@ -1219,7 +1202,6 @@ msgstr "Keisti į" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "Pakeisti" @@ -1568,18 +1550,14 @@ msgstr "" "\n" "Spauskite \"Atšaukti\", jeigu norite grįžti į šį puslapį neišsiuntę savo informacijos." -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "Didelė raiška įjungta" msgid "HD off" msgstr "Didelė raiška išjungta" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Vaizdo pozicija" @@ -1747,7 +1724,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Slėpti diskusiją" @@ -1757,13 +1733,9 @@ msgid "Show Discussion" msgstr "Rodyti diskusiją" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1796,8 +1768,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "Iškilo problema vykdant jūsų užklausą. Prašome bandyti dar kartą." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2127,12 +2097,10 @@ msgstr "" "Visos gairelės pašalintos. Norėdami atšaukti veiksmą, panaikinkite šio " "langelio žymėjimą." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "Jūs jau pranešėte apie šį komentarą." -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "Praneškite apie netinkamą arba įžeidžiantį komentarą." @@ -2173,7 +2141,6 @@ msgstr "Data paskelbta" msgid "More" msgstr "Daugiau" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Mano užrašai" @@ -2182,32 +2149,26 @@ msgstr "Mano užrašai" msgid "Instructor" msgstr "Lektorius" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Vieša" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Paieška" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Naudotojai" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Žymos" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Komentaro tekstas" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "Išvalyti" @@ -2303,7 +2264,6 @@ msgstr "Naudotojo vardas" msgid "Email" msgstr "El. paštas" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Panaikinti prieigą" @@ -2316,7 +2276,6 @@ msgstr "Įvesti naudotojo vardą arba el. paštą" msgid "Please enter a username or email." msgstr "Prašome įvesti naudotojo vardą arba el. paštą." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Klaida keičiant naudotojo teises." @@ -2528,7 +2487,6 @@ msgstr "" msgid "Error sending email." msgstr "Klaida siunčiant el. laišką." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Šiame kurse nėra kaupiama el. laiškų istorija." @@ -2541,10 +2499,6 @@ msgstr "Klaida gaunant šio kurso el. laiškų užduočių istoriją." msgid "There was an error obtaining email content history for this course." msgstr "Klaida gaunant šio kurso el. laiškų turinio istoriją." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Prašome įvesti kurso dalyvio el. adresą arba naudotojo vardą." @@ -2557,12 +2511,6 @@ msgstr "" "Klaida gaunant kurso dalyvio <%= student_id %> pažangos url nuorodą. " "Įsitikinkite, ar teisingai parašytas kurso dalyvio identifikatorius." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Prašome įvesti uždavinio adresą." @@ -2851,7 +2799,6 @@ msgstr "Sistema pateko į klaidingą būseną: <%= state %> " msgid "System got into invalid state for submission: " msgstr "Sistema pateko į klaidingą būseną dėl pateikimo: " -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Slėpti)" @@ -2945,7 +2892,7 @@ msgstr "čia įvesti paveikslo aprašymą" msgid "enter link description here" msgstr "čia įvesti nuorodos aprašymą" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "čia įveskite kodą" @@ -3017,6 +2964,10 @@ msgstr "" "Nurodytu el. paštu gausite patvirtinimą. Spustelėkite gautą nuorodą ir " "patvirtinkite el. pašto pakeitimą. " +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3038,7 +2989,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3046,7 +2997,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3226,6 +3177,14 @@ msgstr "Nepavyko automatiškai įvesti kalbų sąrašo." msgid "Saved" msgstr "Įrašyta" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3272,18 +3231,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3292,7 +3239,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Neįmanoma gauti duomenų, prašome pabandyti vėliau." @@ -3332,7 +3278,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Sistemai iškilo problema išsaugant jūsų darbą" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3343,7 +3289,6 @@ msgstr "Sistemai iškilo problema išsaugant jūsų darbą" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3444,8 +3389,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3654,7 +3599,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3715,8 +3659,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "Naudojama %(count)s skyriuje" +msgstr[1] "Naudojama %(count)s skyriuose" +msgstr[2] "Naudojama %(count)s skyriuose" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3758,19 +3732,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "Naudojama %(count)s skyriuje" -msgstr[1] "Naudojama %(count)s skyriuose" -msgstr[2] "Naudojama %(count)s skyriuose" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3781,11 +3742,6 @@ msgstr "" "Ši grupės konfigūracija nenaudojama. Pradėkite ją naudoti prie bet kurio " "skyriaus pridėdami turinio bandymą per %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3860,8 +3816,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3968,7 +3923,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -4007,7 +3961,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4037,7 +3990,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4155,14 +4107,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4273,7 +4220,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4441,7 +4387,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4499,6 +4444,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4670,6 +4619,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4948,7 +4905,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -5018,6 +4974,20 @@ msgstr "" "Įspėjimas: paskutinė paskelbta šio skyriaus versija yra tiesiogiai " "naudojama. Paskelbdami pakeitimus pakeisite kurso dalyvių atliktą darbą." +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5028,10 +4998,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5057,12 +5035,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5162,7 +5138,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5233,10 +5208,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5369,7 +5340,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5448,7 +5418,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5511,7 +5480,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5638,15 +5606,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5656,11 +5618,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5679,7 +5638,6 @@ msgstr "" "kopiją YouTube. Galite importuoti kopiją iš YouTube arba įkelti savo .srt " "kopijos failą." -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "Importuoti kopiją iš YouTube " @@ -5708,8 +5666,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "Ar norite edX kopiją pakeisti kopija iš YouTube ?" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "Taip, edX kopiją pakeisti kopija iš YouTube " @@ -5736,8 +5692,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ml/LC_MESSAGES/django.mo b/conf/locale/ml/LC_MESSAGES/django.mo index e22537e5a0..570858a29d 100644 Binary files a/conf/locale/ml/LC_MESSAGES/django.mo and b/conf/locale/ml/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ml/LC_MESSAGES/django.po b/conf/locale/ml/LC_MESSAGES/django.po index a6ac8abbec..88800994ac 100644 --- a/conf/locale/ml/LC_MESSAGES/django.po +++ b/conf/locale/ml/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: karthikkn\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/edx-platform/language/ml/)\n" @@ -70,7 +70,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -78,7 +78,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -90,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -117,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -219,6 +213,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -239,7 +309,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -296,6 +366,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -406,102 +483,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -562,7 +543,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -996,7 +977,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1009,7 +990,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1048,7 +1029,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1095,13 +1076,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1133,17 +1112,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1186,7 +1163,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1342,7 +1318,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1374,7 +1349,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1426,7 +1400,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1455,7 +1428,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1596,8 +1568,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2114,12 +2084,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2238,9 +2202,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2478,7 +2439,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2554,8 +2514,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3134,7 +3092,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3386,7 +3344,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3529,7 +3486,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3577,7 +3533,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3615,7 +3570,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3912,19 +3866,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4032,6 +3982,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4080,7 +4046,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4140,7 +4105,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4205,12 +4170,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4273,9 +4237,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4309,7 +4272,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4343,22 +4306,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4367,7 +4318,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4468,12 +4418,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4587,18 +4534,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4629,7 +4572,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4741,7 +4683,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4808,8 +4749,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4863,7 +4804,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4922,7 +4862,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5171,7 +5110,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5221,7 +5159,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5311,8 +5249,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5408,7 +5345,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5438,14 +5374,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5538,7 +5471,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5575,7 +5508,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5705,7 +5637,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6052,7 +5983,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6158,7 +6088,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6340,7 +6269,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6393,12 +6321,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6418,10 +6343,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6458,7 +6380,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6470,11 +6392,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6496,7 +6418,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6724,12 +6646,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6739,21 +6658,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6831,8 +6742,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6844,12 +6753,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6859,11 +6766,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6975,7 +6880,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7005,7 +6909,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7221,8 +7129,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7234,13 +7141,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7260,7 +7162,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7269,13 +7171,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7290,10 +7190,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7303,7 +7201,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7335,14 +7233,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7356,7 +7253,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7383,13 +7280,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7410,7 +7305,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7493,7 +7387,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7537,7 +7431,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7545,7 +7439,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7579,7 +7473,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7630,15 +7524,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7702,7 +7587,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7739,7 +7624,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7782,13 +7667,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7810,31 +7693,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7851,7 +7734,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7867,7 +7749,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7894,7 +7775,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7954,8 +7835,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8092,7 +7971,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8273,7 +8152,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8294,17 +8173,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8324,13 +8201,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8348,7 +8223,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8413,7 +8288,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8424,7 +8298,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8545,11 +8418,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8600,12 +8473,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8614,15 +8487,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8723,7 +8596,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8779,7 +8652,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8857,6 +8729,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8871,6 +8755,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9008,7 +8897,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9024,7 +8913,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9363,8 +9251,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9422,12 +9308,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9481,6 +9365,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9557,7 +9452,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9593,11 +9488,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9605,7 +9500,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9659,7 +9553,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9690,7 +9583,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9704,7 +9596,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9739,7 +9630,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9784,7 +9674,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9875,7 +9764,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9962,7 +9850,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10028,7 +9926,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10037,21 +9934,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10070,11 +9952,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10083,11 +9979,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10108,7 +9999,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10118,7 +10008,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10177,7 +10066,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10231,44 +10119,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10284,7 +10161,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10326,7 +10202,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10524,9 +10399,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10538,7 +10411,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10559,7 +10431,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10724,7 +10595,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10743,7 +10613,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10856,7 +10725,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11580,8 +11448,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11641,12 +11507,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11784,7 +11648,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11932,7 +11795,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11997,7 +11859,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12027,24 +11888,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12112,7 +11965,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12226,7 +12078,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12239,7 +12090,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12251,12 +12101,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12278,22 +12126,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12475,7 +12317,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12510,12 +12351,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12528,12 +12367,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12614,7 +12451,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12653,19 +12489,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13007,7 +12840,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13029,7 +12861,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13214,15 +13045,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13329,7 +13155,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13355,19 +13180,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13422,12 +13244,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13440,14 +13260,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13719,7 +13536,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13727,19 +13543,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13760,7 +13573,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13771,19 +13583,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13801,7 +13610,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13874,7 +13682,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13890,15 +13697,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14122,7 +13924,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14135,7 +13936,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14191,7 +13991,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14206,9 +14005,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14309,8 +14105,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14330,8 +14125,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14401,7 +14195,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14436,7 +14230,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14449,7 +14242,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14572,7 +14365,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14582,7 +14375,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14592,8 +14384,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14668,7 +14458,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14683,7 +14473,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14738,7 +14527,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14797,8 +14586,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14817,11 +14606,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14885,7 +14674,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14927,7 +14715,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15055,8 +14843,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15100,13 +14887,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15129,10 +14914,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15181,8 +14971,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15204,7 +14994,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15249,7 +15039,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15291,7 +15080,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15392,7 +15181,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15523,8 +15312,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15540,7 +15328,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15579,7 +15367,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15589,7 +15377,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15620,7 +15408,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15650,7 +15438,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15695,7 +15483,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15716,7 +15504,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15724,7 +15512,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15736,7 +15524,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15788,7 +15576,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15796,7 +15584,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15856,7 +15644,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15910,7 +15698,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15963,13 +15751,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16208,7 +15994,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16267,8 +16052,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16351,7 +16135,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16577,7 +16360,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16629,8 +16411,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16810,7 +16591,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16850,7 +16631,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16870,12 +16651,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16900,7 +16679,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16916,7 +16695,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16963,11 +16742,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17321,11 +17100,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.mo b/conf/locale/ml/LC_MESSAGES/djangojs.mo index 9f2f082c45..3bc4f101f6 100644 Binary files a/conf/locale/ml/LC_MESSAGES/djangojs.mo and b/conf/locale/ml/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.po b/conf/locale/ml/LC_MESSAGES/djangojs.po index c2c88f8937..9bbbb3aa8c 100644 --- a/conf/locale/ml/LC_MESSAGES/djangojs.po +++ b/conf/locale/ml/LC_MESSAGES/djangojs.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/edx-platform/language/ml/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -84,8 +83,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -93,17 +90,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -196,7 +190,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -204,7 +197,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -225,7 +217,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -244,7 +235,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -308,11 +298,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -320,7 +308,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -331,21 +318,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1216,7 +1200,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1230,7 +1213,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1567,18 +1549,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1696,7 +1674,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1743,7 +1720,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1753,13 +1729,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1789,8 +1761,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2090,12 +2060,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2136,7 +2104,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2145,32 +2112,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2271,7 +2232,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2284,7 +2244,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2472,7 +2431,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2485,10 +2443,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2499,12 +2453,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2758,7 +2706,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2852,7 +2799,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2922,6 +2869,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2943,7 +2894,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2951,7 +2902,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3124,6 +3075,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3170,18 +3129,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3190,7 +3137,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3227,7 +3173,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3238,7 +3184,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3337,8 +3282,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3547,7 +3492,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3605,8 +3549,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3647,18 +3620,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3667,11 +3628,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3746,8 +3702,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3852,7 +3807,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3891,7 +3845,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3919,7 +3872,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4034,14 +3986,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4151,7 +4098,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4319,7 +4265,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4377,6 +4322,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4548,6 +4497,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4826,7 +4783,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4894,6 +4850,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4904,10 +4874,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4933,12 +4911,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5038,7 +5014,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5109,10 +5084,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5245,7 +5216,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5324,7 +5294,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5378,7 +5347,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5498,15 +5466,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5516,11 +5478,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5536,7 +5495,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5561,8 +5519,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5589,8 +5545,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/mn/LC_MESSAGES/django.mo b/conf/locale/mn/LC_MESSAGES/django.mo index 69dc67a453..1c3f464954 100644 Binary files a/conf/locale/mn/LC_MESSAGES/django.mo and b/conf/locale/mn/LC_MESSAGES/django.mo differ diff --git a/conf/locale/mn/LC_MESSAGES/django.po b/conf/locale/mn/LC_MESSAGES/django.po index abca97a44e..40f10a43eb 100644 --- a/conf/locale/mn/LC_MESSAGES/django.po +++ b/conf/locale/mn/LC_MESSAGES/django.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: zolboo0411 \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" @@ -75,7 +75,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -83,7 +83,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -95,7 +94,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -122,15 +120,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -224,6 +218,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -244,7 +314,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -301,6 +371,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -411,102 +488,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -567,7 +548,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1001,7 +982,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1014,7 +995,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1053,7 +1034,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1061,7 +1042,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1100,13 +1081,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1138,17 +1117,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1191,7 +1168,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1347,7 +1323,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1379,7 +1354,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1431,7 +1405,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1460,7 +1433,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1601,8 +1573,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2119,12 +2089,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2243,9 +2207,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2483,7 +2444,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2559,8 +2519,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3139,7 +3097,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3391,7 +3349,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3534,7 +3491,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3582,7 +3538,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3620,7 +3575,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3917,19 +3871,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4037,6 +3987,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4085,7 +4051,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4145,7 +4110,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4210,12 +4175,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4278,9 +4242,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4314,7 +4277,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4348,22 +4311,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4372,7 +4323,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4473,12 +4423,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4592,18 +4539,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4634,7 +4577,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4746,7 +4688,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4813,8 +4754,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4868,7 +4809,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4927,7 +4867,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5176,7 +5115,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5226,7 +5164,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5316,8 +5254,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5413,7 +5350,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5443,14 +5379,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5543,7 +5476,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5580,7 +5513,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5710,7 +5642,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6057,7 +5988,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6163,7 +6093,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6345,7 +6274,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6398,12 +6326,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6423,10 +6348,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6463,7 +6385,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6475,11 +6397,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6501,7 +6423,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6729,12 +6651,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6744,21 +6663,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6836,8 +6747,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6849,12 +6758,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6864,11 +6771,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6980,7 +6885,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7010,7 +6914,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7226,8 +7134,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7239,13 +7146,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7265,7 +7167,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7274,13 +7176,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7295,10 +7195,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7308,7 +7206,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7340,14 +7238,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7361,7 +7258,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7388,13 +7285,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7415,7 +7310,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7498,7 +7392,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7542,7 +7436,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7550,7 +7444,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7584,7 +7478,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7635,15 +7529,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7707,7 +7592,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7744,7 +7629,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7787,13 +7672,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7815,31 +7698,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7856,7 +7739,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7872,7 +7754,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7899,7 +7780,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7959,8 +7840,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8097,7 +7976,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8278,7 +8157,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8299,17 +8178,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8329,13 +8206,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8353,7 +8228,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8418,7 +8293,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8429,7 +8303,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8550,11 +8423,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8605,12 +8478,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8619,15 +8492,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8728,7 +8601,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8784,7 +8657,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8862,6 +8734,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8876,6 +8760,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9013,7 +8902,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9029,7 +8918,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9368,8 +9256,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9427,12 +9313,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9486,6 +9370,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9562,7 +9457,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9598,11 +9493,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9610,7 +9505,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9664,7 +9558,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9695,7 +9588,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9709,7 +9601,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9744,7 +9635,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9789,7 +9679,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9880,7 +9769,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9967,7 +9855,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10033,7 +9931,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10042,21 +9939,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10075,11 +9957,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10088,11 +9984,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10113,7 +10004,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10123,7 +10013,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10182,7 +10071,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10236,44 +10124,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10289,7 +10166,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10331,7 +10207,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10529,9 +10404,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10543,7 +10416,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10564,7 +10436,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10729,7 +10600,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10748,7 +10618,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10861,7 +10730,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11585,8 +11453,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11646,12 +11512,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11789,7 +11653,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11937,7 +11800,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12002,7 +11864,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12032,24 +11893,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12117,7 +11970,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12231,7 +12083,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12244,7 +12095,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12256,12 +12106,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12283,22 +12131,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12480,7 +12322,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12515,12 +12356,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12533,12 +12372,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12619,7 +12456,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12658,19 +12494,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13012,7 +12845,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13034,7 +12866,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13219,15 +13050,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13334,7 +13160,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13360,19 +13185,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13427,12 +13249,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13445,14 +13265,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13724,7 +13541,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13732,19 +13548,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13765,7 +13578,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13776,19 +13588,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13806,7 +13615,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13879,7 +13687,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13895,15 +13702,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14127,7 +13929,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14140,7 +13941,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14196,7 +13996,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14211,9 +14010,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14314,8 +14110,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14335,8 +14130,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14406,7 +14200,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14441,7 +14235,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14454,7 +14247,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14577,7 +14370,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14587,7 +14380,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14597,8 +14389,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14673,7 +14463,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14688,7 +14478,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14743,7 +14532,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14802,8 +14591,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14822,11 +14611,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14890,7 +14679,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14932,7 +14720,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15060,8 +14848,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15105,13 +14892,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15134,10 +14919,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15186,8 +14976,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15209,7 +14999,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15254,7 +15044,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15296,7 +15085,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15397,7 +15186,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15528,8 +15317,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15545,7 +15333,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15584,7 +15372,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15594,7 +15382,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15625,7 +15413,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15655,7 +15443,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15700,7 +15488,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15721,7 +15509,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15729,7 +15517,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15741,7 +15529,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15793,7 +15581,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15801,7 +15589,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15861,7 +15649,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15915,7 +15703,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15968,13 +15756,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16213,7 +15999,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16272,8 +16057,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16356,7 +16140,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16582,7 +16365,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16634,8 +16416,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16815,7 +16596,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16855,7 +16636,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16875,12 +16656,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16905,7 +16684,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16921,7 +16700,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16968,11 +16747,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17326,11 +17105,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.mo b/conf/locale/mn/LC_MESSAGES/djangojs.mo index a7142f155f..3dada9c136 100644 Binary files a/conf/locale/mn/LC_MESSAGES/djangojs.mo and b/conf/locale/mn/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.po b/conf/locale/mn/LC_MESSAGES/djangojs.po index edd8117475..1a8790f2ba 100644 --- a/conf/locale/mn/LC_MESSAGES/djangojs.po +++ b/conf/locale/mn/LC_MESSAGES/djangojs.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -85,8 +84,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -94,17 +91,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -197,7 +191,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -205,7 +198,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -226,7 +218,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -245,7 +236,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -309,11 +299,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -321,7 +309,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -332,21 +319,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1217,7 +1201,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1231,7 +1214,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1568,18 +1550,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1697,7 +1675,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1744,7 +1721,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1754,13 +1730,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1790,8 +1762,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2091,12 +2061,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2137,7 +2105,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2146,32 +2113,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2272,7 +2233,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2285,7 +2245,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2473,7 +2432,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2486,10 +2444,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2500,12 +2454,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2759,7 +2707,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2853,7 +2800,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2923,6 +2870,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2944,7 +2895,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2952,7 +2903,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3125,6 +3076,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3171,18 +3130,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3191,7 +3138,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3228,7 +3174,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3239,7 +3185,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3338,8 +3283,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3548,7 +3493,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3606,8 +3550,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3648,18 +3621,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3668,11 +3629,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3747,8 +3703,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3853,7 +3808,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3892,7 +3846,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3920,7 +3873,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4035,14 +3987,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4099,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4266,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4323,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4498,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4784,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4851,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4875,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4912,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5015,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5085,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5217,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5295,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5348,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5467,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5479,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5496,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5520,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5546,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/mr/LC_MESSAGES/django.mo b/conf/locale/mr/LC_MESSAGES/django.mo index d8d53c071d..ee60051b41 100644 Binary files a/conf/locale/mr/LC_MESSAGES/django.mo and b/conf/locale/mr/LC_MESSAGES/django.mo differ diff --git a/conf/locale/mr/LC_MESSAGES/django.po b/conf/locale/mr/LC_MESSAGES/django.po index 5433ecef05..6b00586e48 100644 --- a/conf/locale/mr/LC_MESSAGES/django.po +++ b/conf/locale/mr/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: Marathi (http://www.transifex.com/projects/p/edx-platform/language/mr/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/mr/LC_MESSAGES/djangojs.mo b/conf/locale/mr/LC_MESSAGES/djangojs.mo index c0ee05a850..dc1aab0b74 100644 Binary files a/conf/locale/mr/LC_MESSAGES/djangojs.mo and b/conf/locale/mr/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/mr/LC_MESSAGES/djangojs.po b/conf/locale/mr/LC_MESSAGES/djangojs.po index 94503d4378..7856a45e8f 100644 --- a/conf/locale/mr/LC_MESSAGES/djangojs.po +++ b/conf/locale/mr/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Marathi (http://www.transifex.com/projects/p/edx-platform/language/mr/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2087,12 +2057,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3121,6 +3072,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3167,18 +3126,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3187,7 +3134,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3224,7 +3170,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3235,7 +3181,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3334,8 +3279,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3743,8 +3699,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3849,7 +3804,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3888,7 +3842,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3916,7 +3869,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4031,14 +3983,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4148,7 +4095,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4316,7 +4262,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4374,6 +4319,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4545,6 +4494,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4823,7 +4780,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4891,6 +4847,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4901,10 +4871,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4930,12 +4908,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5035,7 +5011,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5106,10 +5081,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5242,7 +5213,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5321,7 +5291,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5375,7 +5344,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5495,15 +5463,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5513,11 +5475,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5533,7 +5492,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5558,8 +5516,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5586,8 +5542,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ms/LC_MESSAGES/django.mo b/conf/locale/ms/LC_MESSAGES/django.mo index eba62ce554..e990f8a944 100644 Binary files a/conf/locale/ms/LC_MESSAGES/django.mo and b/conf/locale/ms/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ms/LC_MESSAGES/django.po b/conf/locale/ms/LC_MESSAGES/django.po index fb43e04484..05d7459311 100644 --- a/conf/locale/ms/LC_MESSAGES/django.po +++ b/conf/locale/ms/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-03-18 18:07+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Malay (http://www.transifex.com/projects/p/edx-platform/language/ms/)\n" @@ -70,7 +70,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -78,7 +78,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -90,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -117,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -219,6 +213,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -239,7 +309,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -296,6 +366,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -406,102 +483,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -560,7 +541,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -993,7 +974,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1006,7 +987,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1045,7 +1026,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1053,7 +1034,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1092,13 +1073,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1130,17 +1109,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1183,7 +1160,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1339,7 +1315,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1371,7 +1346,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1423,7 +1397,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1452,7 +1425,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1593,8 +1565,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2111,12 +2081,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2235,9 +2199,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2475,7 +2436,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2551,8 +2511,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3129,7 +3087,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3381,7 +3339,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3524,7 +3481,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3572,7 +3528,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3610,7 +3565,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3907,19 +3861,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4026,6 +3976,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4074,7 +4040,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4134,7 +4099,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4199,12 +4164,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4267,9 +4231,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4303,7 +4266,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4337,22 +4300,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4361,7 +4312,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4462,12 +4412,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4581,18 +4528,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4623,7 +4566,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4733,7 +4675,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4800,8 +4741,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4855,7 +4796,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4914,7 +4854,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5163,7 +5102,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5213,7 +5151,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5303,8 +5241,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5400,7 +5337,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5430,14 +5366,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5530,7 +5463,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5567,7 +5500,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5697,7 +5629,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6044,7 +5975,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6150,7 +6080,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6332,7 +6261,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6385,12 +6313,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6410,10 +6335,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6450,7 +6372,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6462,11 +6384,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6488,7 +6410,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6716,12 +6638,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6731,21 +6650,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6823,8 +6734,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6836,12 +6745,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6851,11 +6758,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6967,7 +6872,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6997,7 +6901,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7213,8 +7121,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7226,13 +7133,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7252,7 +7154,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7261,13 +7163,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7282,10 +7182,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7295,7 +7193,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7327,14 +7225,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7348,7 +7245,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7375,13 +7272,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7402,7 +7297,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7485,7 +7379,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7529,7 +7423,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7537,7 +7431,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7571,7 +7465,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7622,15 +7516,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7694,7 +7579,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7731,7 +7616,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7774,13 +7659,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7802,31 +7685,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7843,7 +7726,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7859,7 +7741,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7886,7 +7767,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7946,8 +7827,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8083,7 +7962,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8264,7 +8143,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8285,17 +8164,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8315,13 +8192,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8339,7 +8214,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8404,7 +8279,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8415,7 +8289,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8536,11 +8409,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8591,12 +8464,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8605,15 +8478,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8714,7 +8587,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8770,7 +8643,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8848,6 +8720,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8862,6 +8746,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8999,7 +8888,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9015,7 +8904,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9352,8 +9240,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9411,12 +9297,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9470,6 +9354,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9546,7 +9441,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9582,11 +9477,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9594,7 +9489,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9648,7 +9542,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9679,7 +9572,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9693,7 +9585,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9728,7 +9619,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9773,7 +9663,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9864,7 +9753,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9951,7 +9839,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10017,7 +9915,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10026,21 +9923,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10059,11 +9941,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10072,11 +9968,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10097,7 +9988,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10107,7 +9997,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10165,7 +10054,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10219,44 +10107,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10272,7 +10149,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10314,7 +10190,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10512,9 +10387,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10526,7 +10399,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10547,7 +10419,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10712,7 +10583,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10731,7 +10601,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10842,7 +10711,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11566,8 +11434,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11627,12 +11493,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11770,7 +11634,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11918,7 +11781,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11983,7 +11845,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12013,24 +11874,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12098,7 +11951,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12212,7 +12064,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12225,7 +12076,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12237,12 +12087,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12264,22 +12112,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12461,7 +12303,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12496,12 +12337,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12514,12 +12353,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12600,7 +12437,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12639,19 +12475,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12993,7 +12826,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13015,7 +12847,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13199,15 +13030,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13314,7 +13140,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13340,19 +13165,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13407,12 +13229,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13425,14 +13245,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13704,7 +13521,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13712,19 +13528,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13745,7 +13558,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13756,19 +13568,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13786,7 +13595,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13859,7 +13667,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13875,15 +13682,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14107,7 +13909,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14120,7 +13921,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14176,7 +13976,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14191,9 +13990,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14294,8 +14090,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14315,8 +14110,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14386,7 +14180,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14421,7 +14215,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14434,7 +14227,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14557,7 +14350,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14567,7 +14360,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14577,8 +14369,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14653,7 +14443,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14668,7 +14458,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14723,7 +14512,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14782,8 +14571,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14802,11 +14591,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14870,7 +14659,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14912,7 +14700,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15040,8 +14828,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15085,13 +14872,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15114,10 +14899,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15166,8 +14956,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15189,7 +14979,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15234,7 +15024,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15276,7 +15065,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15377,7 +15166,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15508,8 +15297,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15525,7 +15313,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15564,7 +15352,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15574,7 +15362,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15605,7 +15393,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15635,7 +15423,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15680,7 +15468,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15701,7 +15489,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15709,7 +15497,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15721,7 +15509,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15773,7 +15561,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15781,7 +15569,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15841,7 +15629,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15895,7 +15683,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15948,13 +15736,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16193,7 +15979,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16252,8 +16037,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16336,7 +16120,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16562,7 +16345,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16614,8 +16396,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16795,7 +16576,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16835,7 +16616,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16855,12 +16636,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16885,7 +16664,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16901,7 +16680,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16948,11 +16727,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17306,11 +17085,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.mo b/conf/locale/ms/LC_MESSAGES/djangojs.mo index c9532df0de..36ececa3f9 100644 Binary files a/conf/locale/ms/LC_MESSAGES/djangojs.mo and b/conf/locale/ms/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.po b/conf/locale/ms/LC_MESSAGES/djangojs.po index 5026603972..3276370bac 100644 --- a/conf/locale/ms/LC_MESSAGES/djangojs.po +++ b/conf/locale/ms/LC_MESSAGES/djangojs.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Malay (http://www.transifex.com/projects/p/edx-platform/language/ms/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -83,8 +82,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -92,17 +89,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1737,7 +1714,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1747,13 +1723,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1783,8 +1755,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2071,12 +2041,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2116,7 +2084,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2125,32 +2092,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2251,7 +2212,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2264,7 +2224,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2452,7 +2411,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2465,10 +2423,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2479,12 +2433,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2738,7 +2686,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2832,7 +2779,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2902,6 +2849,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2923,7 +2874,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2931,7 +2882,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3099,6 +3050,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3145,18 +3104,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3165,7 +3112,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3199,7 +3145,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3210,7 +3156,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3309,8 +3254,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3519,7 +3464,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3577,8 +3521,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3618,17 +3590,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3637,11 +3598,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3716,8 +3672,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3822,7 +3777,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3861,7 +3815,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3889,7 +3842,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4004,14 +3956,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4120,7 +4067,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4288,7 +4234,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4346,6 +4291,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4517,6 +4466,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4795,7 +4752,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4863,6 +4819,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4873,10 +4843,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4902,12 +4880,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5007,7 +4983,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5078,10 +5053,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5214,7 +5185,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5293,7 +5263,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5347,7 +5316,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5467,15 +5435,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5485,11 +5447,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5505,7 +5464,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5530,8 +5488,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5558,8 +5514,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/nb/LC_MESSAGES/django.mo b/conf/locale/nb/LC_MESSAGES/django.mo index 297ec12ea0..1a5e905cdf 100644 Binary files a/conf/locale/nb/LC_MESSAGES/django.mo and b/conf/locale/nb/LC_MESSAGES/django.mo differ diff --git a/conf/locale/nb/LC_MESSAGES/django.po b/conf/locale/nb/LC_MESSAGES/django.po index 5fbcb19c74..8286e628f1 100644 --- a/conf/locale/nb/LC_MESSAGES/django.po +++ b/conf/locale/nb/LC_MESSAGES/django.po @@ -75,7 +75,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Pål Messenlien \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" @@ -102,14 +102,13 @@ msgstr "Notater" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Diskusjon" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Problem" @@ -121,7 +120,6 @@ msgstr "Avansert" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html #, fuzzy @@ -153,15 +151,11 @@ msgstr "Ferdig" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Navn" @@ -253,6 +247,83 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "Brukernavn må bestå av minimum to tegn" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "En gyldig e-postadresse er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Et gyldig passord er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "Brukernavn må bestå av minimum to tegn" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Brukernavn kan kun inneholde bokstavene A-Z og tallene 0-9, uten mellomrom." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Du må akseptere betingelsene for bruk." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "Utdanningsnivå må oppgis" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Kjønn er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Fødselsår må oppgis" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Din postadresse må oppgis" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "En beskrivelse av dine mål er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "By er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Land er påkrevd" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "For å melde deg på må du akseptere betingelsene." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Du mangler ett eller flere påkrevde felt" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "Brukernavn og passordfeltene kan ikke være like" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Passord:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -275,7 +346,7 @@ msgstr "Kvinne" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Annet" @@ -331,6 +402,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -463,103 +541,6 @@ msgstr "En konto med brukernavnet '{username}' finnes fra før." msgid "An account with the Email '{email}' already exists." msgstr "En brukerkonto med epostadressen '{email}' eksisterer allerede." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Feil (401 {field}). Send oss en epost." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "For å melde deg på må du akseptere betingelsene." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Du må akseptere betingelsene for bruk." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "Brukernavn må bestå av minimum to tegn" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "En gyldig e-postadresse er påkrevd" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "Brukernavn må bestå av minimum to tegn" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Et gyldig passord er påkrevd" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Vilkår for bruk må aksepteres" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Godkjenning av Æreskodeks kreves" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "Utdanningsnivå må oppgis" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Kjønn er påkrevd" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Fødselsår må oppgis" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Din postadresse må oppgis" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "En beskrivelse av dine mål er påkrevd" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "By er påkrevd" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Land er påkrevd" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Du mangler ett eller flere påkrevde felt" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "Brukernavnet kan ikke være mer enn {num} tegn langt" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "Epostadressen kani kke være mer enn {num} tegn lang" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Gyldig epostadresse er nødvendig." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Brukernavn kan kun inneholde bokstavene A-Z og tallene 0-9, uten mellomrom." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Passord:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "Brukernavn og passordfeltene kan ikke være like" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Kunne ikke sende aktiverings-epost" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -631,7 +612,7 @@ msgstr "" msgid "Name required" msgstr "Navn påkrevd" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Feil ID" @@ -1066,7 +1047,7 @@ msgstr "feil" msgid "incomplete" msgstr "ufullstendig" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "ubesvart" @@ -1079,7 +1060,7 @@ msgstr "behandler" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: uventet tag {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Svar mottatt." @@ -1123,7 +1104,7 @@ msgstr "Feil ved kjøring av kode." msgid "Cannot connect to the queue" msgstr "Kan ikke koble til køen" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Ingen formel er spesifisert." @@ -1131,7 +1112,7 @@ msgstr "Ingen formel er spesifisert." msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Feil ved etablering av forhåndsvisning" @@ -1170,7 +1151,6 @@ msgstr "Kjøring av usikker Javascript kode er ikke tillat." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" @@ -1210,11 +1190,10 @@ msgstr "Nedtrekk" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Numerisk input" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Det er problemer med fasitsvaret på denne oppgaven." @@ -1416,7 +1395,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1447,7 +1425,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1499,7 +1476,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Alltid" @@ -1528,7 +1504,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Aldri" @@ -1671,8 +1646,6 @@ msgstr "Hvis feilen vedvarer, vennligst kontakt kursansvarlig." #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Siste frist for oppgaven er passert." @@ -2200,12 +2173,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Rediger kursplanen" @@ -2324,9 +2291,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2564,7 +2528,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Om" @@ -2640,8 +2603,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3612,7 +3573,6 @@ msgstr "Instruktørvurdering" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "AI-evaluering" @@ -3660,7 +3620,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3698,7 +3657,6 @@ msgstr "Pågår" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Ferdig" @@ -3995,15 +3953,12 @@ msgstr "Søk" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Copyright" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py msgid "Username" msgstr "Brukernavn" @@ -4117,6 +4072,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "FEIL: Ingen spillbare videokilder ble funnet!" @@ -4169,7 +4140,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4229,7 +4199,7 @@ msgstr "rettet opp passord" msgid "All ok!" msgstr "Alt ok!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Må oppgi brukernavn" @@ -4294,12 +4264,11 @@ msgstr "Totalt antall brukere" msgid "Courses loaded in the modulestore" msgstr "Kurs lastet i modulestore" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "brukernavn" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "epost" @@ -4367,9 +4336,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "Kursnavn" @@ -4403,7 +4371,7 @@ msgstr "Error - cannot get course with ID {0}
{1}
" msgid "Deleted" msgstr "Slettet" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "course_id" @@ -4437,22 +4405,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Åpne tråden igjen" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Lukk tråden" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Tittel kan ikke være tom" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Brødtekst kan ikke være tom" @@ -4461,7 +4417,6 @@ msgstr "Brødtekst kan ikke være tom" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Comment level too deep" @@ -4562,12 +4517,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Epost" @@ -4686,18 +4638,14 @@ msgstr "Successfully reset due date for student {0} for {1} to {2}" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4728,7 +4676,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4840,7 +4787,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Ekstern e-post" @@ -4907,8 +4853,8 @@ msgstr "ID" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4962,7 +4908,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Utsatt frist" @@ -5021,7 +4966,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Iingen statusinformasjon er tilgjengelig" @@ -5279,7 +5223,6 @@ msgstr "Se oppgaver med fri-tekst svar du har levert tidligere." msgid "View submissions that have been flagged by students as inappropriate." msgstr "Se innleveringer som studenter har merket som upassende." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Nye innleveringer å rette" @@ -5334,7 +5277,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5424,8 +5367,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5521,7 +5463,6 @@ msgstr "Dato for tilbakebetaling" msgid "Amount of Refund" msgstr "Beløp som refunderes" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Serviceavgift (hvis aktuelt)" @@ -5551,12 +5492,10 @@ msgstr "Valuta" msgid "Comments" msgstr "Kommentarer" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Universitet" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Kurs" @@ -5650,7 +5589,7 @@ msgstr "" msgid "Course added to cart." msgstr "Kurset er lagt til i handlekurven." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5687,7 +5626,6 @@ msgstr "Du har ikke tillatelse til å se denne siden." msgid "The payment processor did not return a required parameter: {0}" msgstr "Betalingsløsningen ga ikke den nødvendige responsen: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "Betalingsløsningen ga en feilskrevet verdi {0} for param {1}." @@ -5848,7 +5786,6 @@ msgstr "" "Ikke tilstrekkelig midler på kontoen. Mulig fix: forsøk igjen med en annen " "type betalingsmiddel" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Ukjent årsak" @@ -6234,7 +6171,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Ta bilde" @@ -6340,7 +6276,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Gjenoppretting av ditt passord er ferdig" @@ -6545,7 +6480,6 @@ msgstr "Fjern artikkel" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Fjern" @@ -6604,12 +6538,9 @@ msgstr "Forhåndsvis" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6629,10 +6560,7 @@ msgstr "Wiki forhåndsvisning" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6673,7 +6601,7 @@ msgstr "Auto log:" msgid "Change" msgstr "Endre" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Slå sammen den valgte med nåværende..." @@ -6685,11 +6613,11 @@ msgstr "Bytt til den valgte versjonen" msgid "Wiki Revision Preview" msgstr "Wiki Revision Preview" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Tilbake til historisk visning" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Bytt til denne versjonen" @@ -6714,7 +6642,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Etter dette er det viktig å gjennomføre et manuelt gjennomsyn." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Lag en ny kombinert/sammenslått versjon" @@ -6958,12 +6886,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6973,21 +6898,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Passord" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7070,8 +6987,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Æreskodeks" @@ -7088,12 +7003,10 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Vilkår for tjenesten og Æreskodeks" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -7103,7 +7016,6 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html #, fuzzy msgid "Terms of Service" msgstr "" @@ -7112,7 +7024,6 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Vilkår for tjenesten" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Feil i kurs oppdaterings id." @@ -7237,7 +7148,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7271,7 +7181,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7485,8 +7399,7 @@ msgstr "Side ikke funnet" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7498,13 +7411,8 @@ msgstr "" msgid "close" msgstr "lukk" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7524,7 +7432,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Innstillinger" @@ -7533,13 +7441,11 @@ msgstr "Innstillinger" msgid "Error:" msgstr "Feil:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organisasjon:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7554,10 +7460,8 @@ msgstr "Kurs" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "Epost" @@ -7567,7 +7471,7 @@ msgstr "Epost" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "eksempel: brukernavn@domain.com" @@ -7599,14 +7503,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Offentlig brukernavn" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7620,7 +7523,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Detaljer" @@ -7647,13 +7550,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Erklæring om personvern" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Hjelp" @@ -7674,7 +7575,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7757,7 +7657,7 @@ msgstr "Ny" msgid "Dashboard" msgstr "Dashboard" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "rediger" @@ -7801,7 +7701,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Nullstill passord" @@ -7809,7 +7709,7 @@ msgstr "Nullstill passord" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7845,7 +7745,7 @@ msgstr "" "En e-post har blitt sendt til {email}. Følg lenken i e-posten for å endre " "passordet ditt." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Endre e-post" @@ -7896,15 +7796,6 @@ msgstr "Endre mitt navn" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7968,7 +7859,7 @@ msgstr "Studenter avvist:" msgid "Debug: " msgstr "Debug:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Ekstern autentisering feilet" @@ -8005,7 +7896,7 @@ msgstr "Levert" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8048,13 +7939,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Kontakt" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -8076,31 +7965,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8117,7 +8006,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Jobber" @@ -8133,7 +8021,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -8160,7 +8047,7 @@ msgstr "" msgid "Email is incorrect." msgstr "Feil e-post." -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} hjelp" @@ -8220,8 +8107,6 @@ msgstr "Ta med feilmeldinger, skritt som førte til problemet, osv." #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8358,7 +8243,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Nyttig informasjon" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Logg inn via OpenID" @@ -8541,7 +8426,7 @@ msgstr "Rådata:" msgid "Accepted" msgstr "Akseptert" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Feil" @@ -8562,17 +8447,15 @@ msgstr "Bekreft" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Finn kurs" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8592,13 +8475,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8616,7 +8497,7 @@ msgstr "Global navigasjon" msgid "Schools" msgstr "Skoler" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Registrer deg nå" @@ -8681,7 +8562,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8692,7 +8572,6 @@ msgid "Enter a public username:" msgstr "Skriv inn et offentlig brukernavn:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8813,11 +8692,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Fyll ut følgende felt for å opprette en konto." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8868,12 +8747,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Forrige" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Neste" @@ -8882,15 +8761,15 @@ msgstr "Neste" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "f.eks. Ditt Navn (til kursbevis) " @@ -8991,7 +8870,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -9047,7 +8926,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -9125,6 +9003,18 @@ msgstr "" msgid "Platform Version" msgstr "Platformversjon" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9139,6 +9029,11 @@ msgstr "Dato" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9276,7 +9171,7 @@ msgstr "" msgid "Download video" msgstr "Last ned video" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9292,7 +9187,6 @@ msgstr "Dine ord:" msgid "Total number of words:" msgstr "Totalt antall ord:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Åpne kalkulator" @@ -9631,8 +9525,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9690,12 +9582,10 @@ msgstr "Oversikt" msgid "Share with friends and family!" msgstr "Del med venner og familie!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9749,6 +9639,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9825,7 +9726,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9861,11 +9762,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Se oppdateringer i Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Kursoppdateringer & Nyheter" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9873,7 +9774,6 @@ msgstr "" msgid "Course Handouts" msgstr "Kurs-handouts" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9927,7 +9827,6 @@ msgstr "Administrer grupper" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9958,7 +9857,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9972,7 +9870,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10007,7 +9904,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -10052,7 +9948,6 @@ msgstr "Dag" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Studenter" @@ -10143,7 +10038,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "ukjent" @@ -10230,7 +10124,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Kursfremgang for studenten '{username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10298,7 +10202,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Denne lenken åpner/laster ned et PDF-dokument" @@ -10307,21 +10210,6 @@ msgstr "Denne lenken åpner/laster ned et PDF-dokument" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10340,11 +10228,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "Gjennomfør tilbakemelding på kurset" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Forsidebilde" @@ -10353,11 +10255,6 @@ msgstr "{course_number} {course_name} Forsidebilde" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10378,7 +10275,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10388,7 +10284,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10447,7 +10342,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10501,44 +10395,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Vis arkivert kurs" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Se kurset" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "E-postinnstilinger" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10554,7 +10437,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10596,7 +10478,6 @@ msgstr "" msgid "Approved:" msgstr "Godkjent:" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10794,9 +10675,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Tittel" @@ -10808,7 +10687,6 @@ msgstr "Oppdater innlegg" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Legg til en kommentar" @@ -10829,7 +10707,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10994,7 +10871,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11013,7 +10889,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11126,7 +11001,6 @@ msgstr "" msgid "User Profile" msgstr "Brukerprofil" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "…" @@ -11850,8 +11724,6 @@ msgstr "" msgid "Skip" msgstr "Hopp over" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11911,12 +11783,10 @@ msgstr "" msgid "Has the course started?" msgstr "Har kurset startet?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Ja" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Nei" @@ -12054,7 +11924,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12202,7 +12071,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12267,7 +12135,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12297,24 +12164,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12382,7 +12241,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12496,7 +12354,6 @@ msgstr "" msgid "Gender Distribution" msgstr "Kjønnsfordeling" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12509,7 +12366,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12521,12 +12377,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12548,22 +12402,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12745,7 +12593,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12780,12 +12627,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Send e-post" @@ -12798,12 +12643,10 @@ msgstr "Send til:" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12884,7 +12727,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12923,19 +12765,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13280,7 +13119,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13302,7 +13140,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13487,15 +13324,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13602,7 +13434,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13628,19 +13459,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13695,12 +13523,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13713,14 +13539,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "I pressen" @@ -13992,7 +13815,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14000,19 +13822,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -14033,7 +13852,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -14044,19 +13862,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -14074,7 +13889,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -14147,7 +13961,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14163,15 +13976,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14395,7 +14203,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14408,7 +14215,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14464,7 +14270,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14479,9 +14284,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14584,8 +14386,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14605,8 +14406,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14676,7 +14476,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14711,7 +14511,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14724,7 +14523,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14847,7 +14646,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14857,7 +14656,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14867,8 +14665,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14943,7 +14739,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Kursoppdateringer" @@ -14958,7 +14754,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15013,7 +14808,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15072,8 +14867,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15092,11 +14887,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15160,7 +14955,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15202,7 +14996,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15330,8 +15124,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15375,13 +15168,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15404,10 +15195,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15456,8 +15252,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15479,7 +15275,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15524,7 +15320,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15566,7 +15361,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15667,7 +15462,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15798,8 +15593,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15815,7 +15609,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15854,7 +15648,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15864,7 +15658,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15895,7 +15689,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15925,7 +15719,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15970,7 +15764,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15991,7 +15785,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15999,7 +15793,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16011,7 +15805,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16063,7 +15857,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16071,7 +15865,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16131,7 +15925,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16185,7 +15979,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16238,13 +16032,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16483,7 +16275,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16542,8 +16333,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16626,7 +16416,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16852,7 +16641,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16904,8 +16692,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17085,7 +16872,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17125,7 +16912,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17145,12 +16932,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17175,7 +16960,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17191,7 +16976,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17241,11 +17026,11 @@ msgstr "" "legge til mer komplekse funksjoner som å legge til plugins, meta data, " "relaterte artikler etc..." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Innhold" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Oppsummering" @@ -17629,11 +17414,11 @@ msgstr "vedlegg revisjoner" msgid "%s was successfully added." msgstr "%s ble lagt til" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Filen kunne ikke lagres: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.mo b/conf/locale/nb/LC_MESSAGES/djangojs.mo index 319c8721db..6cbb115f85 100644 Binary files a/conf/locale/nb/LC_MESSAGES/djangojs.mo and b/conf/locale/nb/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.po b/conf/locale/nb/LC_MESSAGES/djangojs.po index 1cc1c8dfb2..4b96a2ba34 100644 --- a/conf/locale/nb/LC_MESSAGES/djangojs.po +++ b/conf/locale/nb/LC_MESSAGES/djangojs.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-05 10:01+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "Denne lenken åpner i ett nytt nettleservindu/fane" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Slett" @@ -183,7 +177,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -191,7 +184,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -212,7 +204,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -231,7 +222,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -295,11 +285,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -307,7 +295,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -318,21 +305,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1190,7 +1174,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1536,18 +1519,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1665,7 +1644,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1712,7 +1690,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1722,13 +1699,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1758,8 +1731,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2059,12 +2030,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2105,7 +2074,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2114,27 +2082,22 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" @@ -2238,7 +2201,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2251,7 +2213,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2439,7 +2400,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2452,10 +2412,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2466,12 +2422,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2725,7 +2675,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2819,7 +2768,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2889,6 +2838,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2910,7 +2863,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2918,7 +2871,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3091,6 +3044,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3137,18 +3098,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3157,7 +3106,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3196,7 +3144,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio har problemer med å lagre ditt arbeid" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3207,7 +3155,6 @@ msgstr "Studio har problemer med å lagre ditt arbeid" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Lagrer" @@ -3306,8 +3253,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3518,7 +3465,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Gyldighetsperiode må oppgis som HH:MM." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3576,8 +3522,37 @@ msgstr "Last opp ny fil" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3618,18 +3593,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3638,11 +3601,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3717,8 +3675,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3826,7 +3783,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3865,7 +3821,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3893,7 +3848,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4014,14 +3968,9 @@ msgstr "" msgid "Upload translation" msgstr "Last opp oversettelse" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4131,7 +4080,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4299,7 +4247,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4357,6 +4304,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4528,6 +4479,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4806,7 +4765,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "Liste over opplastede filer og ressurser i dette kurset" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4874,6 +4832,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4884,10 +4856,18 @@ msgstr "feil.melding" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4913,12 +4893,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5018,7 +4996,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5089,10 +5066,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5225,7 +5198,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5304,7 +5276,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5358,7 +5329,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5478,15 +5448,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Last opp nye undertekster" @@ -5496,11 +5460,8 @@ msgstr "Last opp nye undertekster" msgid "Upload New .srt Transcript" msgstr "Last opp ny .srt undertekst" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Last ned undertekst for redigering" @@ -5516,7 +5477,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5541,8 +5501,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5569,8 +5527,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "Benytt nåværende undertekst" diff --git a/conf/locale/ne/LC_MESSAGES/django.mo b/conf/locale/ne/LC_MESSAGES/django.mo index a60fe06c7b..7969eac151 100644 Binary files a/conf/locale/ne/LC_MESSAGES/django.mo and b/conf/locale/ne/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ne/LC_MESSAGES/django.po b/conf/locale/ne/LC_MESSAGES/django.po index f1a485d236..6566dcb937 100644 --- a/conf/locale/ne/LC_MESSAGES/django.po +++ b/conf/locale/ne/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-03-12 12:54+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/edx-platform/language/ne/)\n" @@ -70,7 +70,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -78,7 +78,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -90,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -117,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -219,6 +213,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -239,7 +309,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -296,6 +366,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -406,102 +483,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -562,7 +543,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -996,7 +977,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1009,7 +990,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1048,7 +1029,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1095,13 +1076,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1133,17 +1112,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1186,7 +1163,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1342,7 +1318,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1374,7 +1349,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1426,7 +1400,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1455,7 +1428,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1596,8 +1568,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2114,12 +2084,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2238,9 +2202,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2478,7 +2439,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2554,8 +2514,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3134,7 +3092,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3386,7 +3344,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3529,7 +3486,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3577,7 +3533,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3615,7 +3570,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3912,19 +3866,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4032,6 +3982,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4080,7 +4046,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4140,7 +4105,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4205,12 +4170,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4273,9 +4237,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4309,7 +4272,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4343,22 +4306,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4367,7 +4318,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4468,12 +4418,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4587,18 +4534,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4629,7 +4572,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4741,7 +4683,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4808,8 +4749,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4863,7 +4804,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4922,7 +4862,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5171,7 +5110,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5221,7 +5159,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5311,8 +5249,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5408,7 +5345,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5438,14 +5374,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5538,7 +5471,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5575,7 +5508,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5705,7 +5637,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6052,7 +5983,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6158,7 +6088,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6340,7 +6269,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6393,12 +6321,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6418,10 +6343,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6458,7 +6380,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6470,11 +6392,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6496,7 +6418,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6724,12 +6646,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6739,21 +6658,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6831,8 +6742,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6844,12 +6753,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6859,11 +6766,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6975,7 +6880,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7005,7 +6909,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7221,8 +7129,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7234,13 +7141,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7260,7 +7162,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7269,13 +7171,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7290,10 +7190,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7303,7 +7201,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7335,14 +7233,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7356,7 +7253,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7383,13 +7280,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7410,7 +7305,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7493,7 +7387,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7537,7 +7431,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7545,7 +7439,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7579,7 +7473,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7630,15 +7524,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7702,7 +7587,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7739,7 +7624,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7782,13 +7667,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7810,31 +7693,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7851,7 +7734,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7867,7 +7749,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7894,7 +7775,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7954,8 +7835,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8092,7 +7971,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8273,7 +8152,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8294,17 +8173,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8324,13 +8201,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8348,7 +8223,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8413,7 +8288,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8424,7 +8298,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8545,11 +8418,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8600,12 +8473,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8614,15 +8487,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8723,7 +8596,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8779,7 +8652,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8857,6 +8729,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8871,6 +8755,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9008,7 +8897,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9024,7 +8913,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9363,8 +9251,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9422,12 +9308,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9481,6 +9365,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9557,7 +9452,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9593,11 +9488,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9605,7 +9500,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9659,7 +9553,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9690,7 +9583,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9704,7 +9596,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9739,7 +9630,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9784,7 +9674,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9875,7 +9764,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9962,7 +9850,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10028,7 +9926,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10037,21 +9934,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10070,11 +9952,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10083,11 +9979,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10108,7 +9999,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10118,7 +10008,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10177,7 +10066,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10231,44 +10119,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10284,7 +10161,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10326,7 +10202,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10524,9 +10399,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10538,7 +10411,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10559,7 +10431,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10724,7 +10595,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10743,7 +10613,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10856,7 +10725,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11580,8 +11448,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11641,12 +11507,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11784,7 +11648,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11932,7 +11795,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11997,7 +11859,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12027,24 +11888,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12112,7 +11965,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12226,7 +12078,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12239,7 +12090,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12251,12 +12101,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12278,22 +12126,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12475,7 +12317,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12510,12 +12351,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12528,12 +12367,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12614,7 +12451,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12653,19 +12489,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13007,7 +12840,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13029,7 +12861,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13214,15 +13045,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13329,7 +13155,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13355,19 +13180,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13422,12 +13244,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13440,14 +13260,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13719,7 +13536,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13727,19 +13543,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13760,7 +13573,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13771,19 +13583,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13801,7 +13610,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13874,7 +13682,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13890,15 +13697,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14122,7 +13924,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14135,7 +13936,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14191,7 +13991,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14206,9 +14005,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14309,8 +14105,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14330,8 +14125,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14401,7 +14195,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14436,7 +14230,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14449,7 +14242,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14572,7 +14365,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14582,7 +14375,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14592,8 +14384,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14668,7 +14458,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14683,7 +14473,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14738,7 +14527,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14797,8 +14586,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14817,11 +14606,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14885,7 +14674,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14927,7 +14715,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15055,8 +14843,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15100,13 +14887,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15129,10 +14914,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15181,8 +14971,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15204,7 +14994,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15249,7 +15039,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15291,7 +15080,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15392,7 +15181,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15523,8 +15312,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15540,7 +15328,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15579,7 +15367,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15589,7 +15377,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15620,7 +15408,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15650,7 +15438,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15695,7 +15483,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15716,7 +15504,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15724,7 +15512,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15736,7 +15524,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15788,7 +15576,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15796,7 +15584,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15856,7 +15644,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15910,7 +15698,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15963,13 +15751,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16208,7 +15994,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16267,8 +16052,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16351,7 +16135,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16577,7 +16360,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16629,8 +16411,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16810,7 +16591,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16850,7 +16631,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16870,12 +16651,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16900,7 +16679,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16916,7 +16695,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16963,11 +16742,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17321,11 +17100,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.mo b/conf/locale/ne/LC_MESSAGES/djangojs.mo index 78fc268423..ba783f9a4b 100644 Binary files a/conf/locale/ne/LC_MESSAGES/djangojs.mo and b/conf/locale/ne/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.po b/conf/locale/ne/LC_MESSAGES/djangojs.po index 022e519d95..44a3aed146 100644 --- a/conf/locale/ne/LC_MESSAGES/djangojs.po +++ b/conf/locale/ne/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/edx-platform/language/ne/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.mo b/conf/locale/nl_NL/LC_MESSAGES/django.mo index eed69fd6dd..6c0f988323 100644 Binary files a/conf/locale/nl_NL/LC_MESSAGES/django.mo and b/conf/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.po b/conf/locale/nl_NL/LC_MESSAGES/django.po index c984054fbb..f0cc5a3bf7 100644 --- a/conf/locale/nl_NL/LC_MESSAGES/django.po +++ b/conf/locale/nl_NL/LC_MESSAGES/django.po @@ -60,7 +60,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Marvin \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" @@ -91,7 +91,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -99,7 +99,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -111,7 +110,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -139,10 +137,8 @@ msgstr "" #: lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Naam" @@ -236,6 +232,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -256,7 +328,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -312,6 +384,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -427,102 +506,6 @@ msgstr "De naam '{username}' is al in gebruik. Kies een andere." msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Error (401 {field}). Stuur ons een e-mail." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -583,7 +566,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1017,7 +1000,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1030,7 +1013,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1069,7 +1052,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1077,7 +1060,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1116,13 +1099,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1154,17 +1135,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1207,7 +1186,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1363,7 +1341,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1395,7 +1372,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1447,7 +1423,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1476,7 +1451,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1617,8 +1591,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2135,12 +2107,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2259,9 +2225,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2498,7 +2461,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Over" @@ -2574,8 +2536,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3154,7 +3114,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3406,7 +3366,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3549,7 +3508,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3597,7 +3555,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3635,7 +3592,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3932,19 +3888,15 @@ msgstr "Zoeken" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4051,6 +4003,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4099,7 +4067,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4159,7 +4126,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4224,12 +4191,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4292,9 +4258,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4328,7 +4293,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4362,22 +4327,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4386,7 +4339,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4487,12 +4439,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "E-mail" @@ -4606,18 +4555,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4648,7 +4593,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4760,7 +4704,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4827,8 +4770,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4882,7 +4825,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4941,7 +4883,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5190,7 +5131,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5240,7 +5180,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5330,8 +5270,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5427,7 +5366,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5457,14 +5395,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5557,7 +5492,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5594,7 +5529,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5724,7 +5658,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6071,7 +6004,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6177,7 +6109,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6359,7 +6290,6 @@ msgstr "Verwijder artikel" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Verwijderen" @@ -6410,10 +6340,7 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/help_modal.html lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html @@ -6434,10 +6361,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6474,7 +6398,7 @@ msgstr "" msgid "Change" msgstr "Verander" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6486,11 +6410,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6512,7 +6436,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6740,12 +6664,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6755,21 +6676,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6847,8 +6760,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6860,12 +6771,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6875,11 +6784,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6991,7 +6898,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7021,7 +6927,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7237,8 +7147,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7250,13 +7159,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7276,7 +7180,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7285,13 +7189,11 @@ msgstr "" msgid "Error:" msgstr "Error:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7306,10 +7208,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7319,7 +7219,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7351,14 +7251,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7372,7 +7271,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7399,13 +7298,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7426,7 +7323,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7509,7 +7405,7 @@ msgstr "Nieuw" msgid "Dashboard" msgstr "Dashboard" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "wijzig" @@ -7553,7 +7449,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Reset Wachtwoord" @@ -7561,7 +7457,7 @@ msgstr "Reset Wachtwoord" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7595,7 +7491,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7646,15 +7542,6 @@ msgstr "Verander Mijn Naam" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7718,7 +7605,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7755,7 +7642,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7798,13 +7685,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contact" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -7826,31 +7711,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7867,7 +7752,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Banen" @@ -7883,7 +7767,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Wachtwoord Reset" @@ -7910,7 +7793,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7970,8 +7853,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8108,7 +7989,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8289,7 +8170,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8310,17 +8191,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8340,13 +8219,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8364,7 +8241,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8429,7 +8306,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8440,7 +8316,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8561,11 +8436,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8616,12 +8491,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8630,15 +8505,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8739,7 +8614,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8795,7 +8670,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8873,6 +8747,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8887,6 +8773,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9024,7 +8915,7 @@ msgstr "" msgid "Download video" msgstr "Download video" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9040,7 +8931,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9379,8 +9269,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9438,12 +9326,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9497,6 +9383,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9573,7 +9470,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9609,11 +9506,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9621,7 +9518,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9675,7 +9571,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9706,7 +9601,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9720,7 +9614,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9755,7 +9648,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Sectie:" @@ -9800,7 +9692,6 @@ msgstr "Dag" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Studenten" @@ -9891,7 +9782,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9978,7 +9868,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10044,7 +9944,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10053,21 +9952,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10086,11 +9970,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10099,11 +9997,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10124,7 +10017,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10134,7 +10026,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10193,7 +10084,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10247,44 +10137,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "E-mail Instellingen" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10300,7 +10179,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10342,7 +10220,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10540,7 +10417,6 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Title" msgstr "Titel" @@ -10553,7 +10429,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10574,7 +10449,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10739,7 +10613,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10758,7 +10631,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10871,7 +10743,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11595,8 +11466,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11656,12 +11525,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11799,7 +11666,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11947,7 +11813,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12012,7 +11877,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12042,24 +11906,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12127,7 +11983,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12241,7 +12096,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12254,7 +12108,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12266,12 +12119,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12293,22 +12144,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12490,7 +12335,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12525,12 +12369,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12543,12 +12385,10 @@ msgstr "Verzenden naar:" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12629,7 +12469,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12668,19 +12507,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13026,7 +12862,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13048,7 +12883,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13233,15 +13067,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13348,7 +13177,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13374,19 +13202,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13444,12 +13269,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13462,14 +13285,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13741,7 +13561,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13749,19 +13568,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13782,7 +13598,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13793,19 +13608,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13823,7 +13635,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13896,7 +13707,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13912,15 +13722,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14144,7 +13949,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14157,7 +13961,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14213,7 +14016,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14228,9 +14030,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14331,8 +14130,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14352,8 +14150,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14423,7 +14220,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14458,7 +14255,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14471,7 +14267,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14594,7 +14390,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14604,7 +14400,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14614,8 +14409,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14690,7 +14483,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14705,7 +14498,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14760,7 +14552,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14819,8 +14611,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14839,11 +14631,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14907,7 +14699,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14949,7 +14740,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15077,8 +14868,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15122,13 +14912,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15151,10 +14939,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15203,8 +14996,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15226,7 +15019,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15271,7 +15064,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15313,7 +15105,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15414,7 +15206,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15545,8 +15337,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15562,7 +15353,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15601,7 +15392,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15611,7 +15402,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15642,7 +15433,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15672,7 +15463,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15717,7 +15508,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15738,7 +15529,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15746,7 +15537,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15758,7 +15549,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15810,7 +15601,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15818,7 +15609,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15878,7 +15669,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15932,7 +15723,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15985,13 +15776,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16230,7 +16019,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16289,8 +16077,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16373,7 +16160,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16599,7 +16385,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16651,8 +16436,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16832,7 +16616,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16872,7 +16656,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16892,12 +16676,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16922,7 +16704,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16938,7 +16720,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16985,11 +16767,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17343,11 +17125,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo b/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo index 0e0b61628f..e1aa3992e6 100644 Binary files a/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo and b/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/nl_NL/LC_MESSAGES/djangojs.po b/conf/locale/nl_NL/LC_MESSAGES/djangojs.po index ea0eeed6ec..402a495d0e 100644 --- a/conf/locale/nl_NL/LC_MESSAGES/djangojs.po +++ b/conf/locale/nl_NL/LC_MESSAGES/djangojs.po @@ -37,8 +37,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-09 22:41+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -91,8 +90,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -100,17 +97,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -201,7 +195,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -209,7 +202,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -230,7 +222,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -249,7 +240,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -313,11 +303,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -325,7 +313,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -336,21 +323,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1221,7 +1205,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1235,7 +1218,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1572,18 +1554,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1701,7 +1679,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1748,7 +1725,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1758,13 +1734,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1794,8 +1766,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2095,12 +2065,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2141,7 +2109,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2150,32 +2117,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2276,7 +2237,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2289,7 +2249,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2477,7 +2436,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2490,10 +2448,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2504,12 +2458,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2763,7 +2711,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2857,7 +2804,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2927,6 +2874,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2948,7 +2899,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2956,7 +2907,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3129,6 +3080,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3175,18 +3134,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3195,7 +3142,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3232,7 +3178,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3243,7 +3189,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3342,8 +3287,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3552,7 +3497,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3610,8 +3554,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3652,18 +3625,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3672,11 +3633,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3751,8 +3707,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3857,7 +3812,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3896,7 +3850,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3924,7 +3877,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4039,14 +3991,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4156,7 +4103,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4324,7 +4270,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4382,6 +4327,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4553,6 +4502,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4831,7 +4788,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4899,6 +4855,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4909,10 +4879,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4938,12 +4916,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5043,7 +5019,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5114,10 +5089,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5250,7 +5221,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5329,7 +5299,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5383,7 +5352,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5503,15 +5471,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5521,11 +5483,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5541,7 +5500,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5566,8 +5524,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5594,8 +5550,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/or/LC_MESSAGES/django.mo b/conf/locale/or/LC_MESSAGES/django.mo index b36547d615..e9da15d54d 100644 Binary files a/conf/locale/or/LC_MESSAGES/django.mo and b/conf/locale/or/LC_MESSAGES/django.mo differ diff --git a/conf/locale/or/LC_MESSAGES/django.po b/conf/locale/or/LC_MESSAGES/django.po index 73dc8bf76c..5dac799284 100644 --- a/conf/locale/or/LC_MESSAGES/django.po +++ b/conf/locale/or/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-05-19 19:18+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Oriya (http://www.transifex.com/projects/p/edx-platform/language/or/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/or/LC_MESSAGES/djangojs.mo b/conf/locale/or/LC_MESSAGES/djangojs.mo index 23780d9350..bf9a07f7eb 100644 Binary files a/conf/locale/or/LC_MESSAGES/djangojs.mo and b/conf/locale/or/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/or/LC_MESSAGES/djangojs.po b/conf/locale/or/LC_MESSAGES/djangojs.po index 5bbbd996b8..9726dead9a 100644 --- a/conf/locale/or/LC_MESSAGES/djangojs.po +++ b/conf/locale/or/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Oriya (http://www.transifex.com/projects/p/edx-platform/language/or/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/pl/LC_MESSAGES/django.mo b/conf/locale/pl/LC_MESSAGES/django.mo index 1430131e3a..bb666b9374 100644 Binary files a/conf/locale/pl/LC_MESSAGES/django.mo and b/conf/locale/pl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pl/LC_MESSAGES/django.po b/conf/locale/pl/LC_MESSAGES/django.po index d0435cc44c..76ba45d14b 100644 --- a/conf/locale/pl/LC_MESSAGES/django.po +++ b/conf/locale/pl/LC_MESSAGES/django.po @@ -96,7 +96,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: EDP \n" "Language-Team: Polish (http://www.transifex.com/projects/p/edx-platform/language/pl/)\n" @@ -127,7 +127,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -135,7 +135,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -147,7 +146,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -174,15 +172,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -276,6 +270,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -296,7 +366,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -353,6 +423,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -463,102 +540,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -621,7 +602,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1069,7 +1050,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1108,7 +1089,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1116,7 +1097,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1155,13 +1136,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1193,17 +1172,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1246,7 +1223,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1402,7 +1378,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1434,7 +1409,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1486,7 +1460,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1515,7 +1488,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1656,8 +1628,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2174,12 +2144,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2298,9 +2262,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2538,7 +2499,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2614,8 +2574,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3196,7 +3154,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3448,7 +3406,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3591,7 +3548,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3639,7 +3595,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3677,7 +3632,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3974,19 +3928,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4095,6 +4045,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4143,7 +4109,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4203,7 +4168,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4268,12 +4233,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4336,9 +4300,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4372,7 +4335,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4406,22 +4369,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4430,7 +4381,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4531,12 +4481,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4650,18 +4597,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4692,7 +4635,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4806,7 +4748,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4873,8 +4814,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4928,7 +4869,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4987,7 +4927,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5236,7 +5175,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5286,7 +5224,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5376,8 +5314,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5473,7 +5410,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5503,14 +5439,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5603,7 +5536,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5640,7 +5573,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5770,7 +5702,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6117,7 +6048,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6223,7 +6153,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6405,7 +6334,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6458,12 +6386,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6483,10 +6408,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6523,7 +6445,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6535,11 +6457,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6561,7 +6483,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6789,12 +6711,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6804,21 +6723,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6896,8 +6807,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6909,12 +6818,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6924,11 +6831,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7040,7 +6945,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7070,7 +6974,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7286,8 +7194,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7299,13 +7206,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7325,7 +7227,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7334,13 +7236,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7355,10 +7255,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "E-mail" @@ -7368,7 +7266,7 @@ msgstr "E-mail" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "Przykład: username@domain.com" @@ -7400,14 +7298,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7421,7 +7318,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7448,7 +7345,6 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" @@ -7472,7 +7368,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7555,7 +7450,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7599,7 +7494,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7607,7 +7502,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7641,7 +7536,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7692,15 +7587,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7764,7 +7650,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7801,7 +7687,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7844,13 +7730,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Kontakt" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -7872,31 +7756,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7913,7 +7797,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7929,7 +7812,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7956,7 +7838,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -8016,8 +7898,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8155,7 +8035,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8336,7 +8216,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8357,17 +8237,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8387,13 +8265,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8411,7 +8287,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8476,7 +8352,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8487,7 +8362,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8608,11 +8482,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8663,12 +8537,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8677,15 +8551,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8786,7 +8660,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8842,7 +8716,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8920,6 +8793,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8934,6 +8819,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9071,7 +8961,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9087,7 +8977,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9428,8 +9317,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9487,12 +9374,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9546,6 +9431,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9622,7 +9518,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9658,11 +9554,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9670,7 +9566,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9724,7 +9619,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9755,7 +9649,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9769,7 +9662,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9804,7 +9696,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9849,7 +9740,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9940,7 +9830,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10027,7 +9916,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10093,7 +9992,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10102,21 +10000,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10135,11 +10018,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10148,11 +10045,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10173,7 +10065,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10183,7 +10074,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10243,7 +10133,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10297,44 +10186,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10350,7 +10228,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10392,7 +10269,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10590,9 +10466,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10604,7 +10478,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10625,7 +10498,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10790,7 +10662,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10809,7 +10680,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10924,7 +10794,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11648,8 +11517,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11709,12 +11576,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Tak" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Nie" @@ -11852,7 +11717,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12000,7 +11864,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12065,7 +11928,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12095,24 +11957,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12180,7 +12034,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12294,7 +12147,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12307,7 +12159,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12319,12 +12170,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12346,22 +12195,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12543,7 +12386,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12578,12 +12420,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Wyślij e-mail" @@ -12596,12 +12436,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12682,7 +12520,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12721,19 +12558,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13075,7 +12909,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13097,7 +12930,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13283,15 +13115,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13398,7 +13225,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13424,19 +13250,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13491,12 +13314,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13509,14 +13330,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13788,7 +13606,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13796,19 +13613,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13829,7 +13643,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13840,19 +13653,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13870,7 +13680,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13943,7 +13752,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13959,15 +13767,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14191,7 +13994,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14204,7 +14006,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14260,7 +14061,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14275,9 +14075,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14378,8 +14175,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14399,8 +14195,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14470,7 +14265,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14505,7 +14300,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14518,7 +14312,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14641,7 +14435,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14651,7 +14445,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14661,8 +14454,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14737,7 +14528,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14752,7 +14543,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14807,7 +14597,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14866,8 +14656,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14886,11 +14676,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14954,7 +14744,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14996,7 +14785,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15124,8 +14913,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15169,13 +14957,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15198,10 +14984,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15250,8 +15041,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15273,7 +15064,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15318,7 +15109,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15360,7 +15150,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15461,7 +15251,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15592,8 +15382,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15609,7 +15398,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15648,7 +15437,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15658,7 +15447,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15689,7 +15478,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15719,7 +15508,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15764,7 +15553,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15785,7 +15574,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15793,7 +15582,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15805,7 +15594,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15857,7 +15646,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15865,7 +15654,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15925,7 +15714,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15979,7 +15768,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16032,13 +15821,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16277,7 +16064,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16336,8 +16122,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16420,7 +16205,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16646,7 +16430,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16698,8 +16481,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16879,7 +16661,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16919,7 +16701,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16939,12 +16721,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16969,7 +16749,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16985,7 +16765,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17032,11 +16812,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17390,11 +17170,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.mo b/conf/locale/pl/LC_MESSAGES/djangojs.mo index da96a9a50f..6f3217117e 100644 Binary files a/conf/locale/pl/LC_MESSAGES/djangojs.mo and b/conf/locale/pl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.po b/conf/locale/pl/LC_MESSAGES/djangojs.po index aab2159315..3d87fafb9d 100644 --- a/conf/locale/pl/LC_MESSAGES/djangojs.po +++ b/conf/locale/pl/LC_MESSAGES/djangojs.po @@ -56,8 +56,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-10 13:11+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Polish (http://www.transifex.com/projects/p/edx-platform/language/pl/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -110,8 +109,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -119,17 +116,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -224,7 +218,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -232,7 +225,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -253,7 +245,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -272,7 +263,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -336,11 +326,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -348,7 +336,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -359,21 +346,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1244,7 +1228,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1258,7 +1241,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1595,18 +1577,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1724,7 +1702,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1774,7 +1751,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1784,13 +1760,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1820,8 +1792,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2134,12 +2104,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2181,7 +2149,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2190,32 +2157,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2316,7 +2277,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2329,7 +2289,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2517,7 +2476,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2530,10 +2488,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2544,12 +2498,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2803,7 +2751,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2897,7 +2844,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2967,6 +2914,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2988,7 +2939,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2996,7 +2947,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3174,6 +3125,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3220,18 +3179,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3240,7 +3187,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3280,7 +3226,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3291,7 +3237,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3390,8 +3335,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3600,7 +3545,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3658,8 +3602,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3701,19 +3675,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3722,11 +3683,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3801,8 +3757,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3907,7 +3862,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3946,7 +3900,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3974,7 +3927,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4089,14 +4041,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4207,7 +4154,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4375,7 +4321,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4433,6 +4378,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4604,6 +4553,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4882,7 +4839,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4950,6 +4906,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4960,10 +4930,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4989,12 +4967,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5094,7 +5070,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5165,10 +5140,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5301,7 +5272,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5380,7 +5350,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5434,7 +5403,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5554,15 +5522,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5572,11 +5534,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5592,7 +5551,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5617,8 +5575,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5645,8 +5601,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.mo b/conf/locale/pt_BR/LC_MESSAGES/django.mo index 2b0a355b4e..bea4de33af 100644 Binary files a/conf/locale/pt_BR/LC_MESSAGES/django.mo and b/conf/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.po b/conf/locale/pt_BR/LC_MESSAGES/django.po index 7e5cce8a95..16ab2e03b5 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/django.po +++ b/conf/locale/pt_BR/LC_MESSAGES/django.po @@ -39,9 +39,11 @@ # Pedro Guimarães Martins , 2015 # RenataBarboza, 2013 # Renata Barboza-Murray, 2013-2014 +# Rene de Souza Vianello Argento , 2015 # Ricardo Pietrobon , 2013-2014 # Sarina Canelake , 2014 # Thiago Freitas Da Ponte , 2014 +# Thiago Perrotta , 2015 # Thiago Vieira , 2014 # Thiago Bittencourt , 2014 # Tulio Simoes Martins Padilha , 2014 @@ -77,6 +79,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Alexander Rodrigo Ferreira , 2015 # Álex Filipe , 2014 # Alex M. Becker , 2013 # Alex M. Becker , 2013 @@ -130,6 +133,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Alexander Rodrigo Ferreira , 2015 # Álex Filipe , 2014 # Alextds , 2014 # Alex M. Becker , 2013 @@ -188,7 +192,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: javiercencig \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" @@ -216,14 +220,13 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Discussão" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "Problema" @@ -235,7 +238,6 @@ msgstr "Avançado" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -267,15 +269,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Nome" @@ -367,6 +365,83 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "O nome de usuário deve ter no mínimo dois caracteres" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "É necessário um endereço de e-mail válido" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "É necessária uma senha válida" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "O seu nome legal deve conter no mínimo dois caracteres" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"O nome de usuário deve conter apenas letras e números, sem espaços. 0-9" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Por favor, aceite os termos do serviço." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "É obrigatório informar o nível de formação" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "É obrigatório informar o gênero" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "É obrigatório informar o seu ano de nascimento" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "É obrigatório informar o seu endereço" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "A descrição dos seus objetivos é obrigatória" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "É obrigatório informar a cidade" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "É obrigatório informar país" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Para inscrever-se, é preciso seguir o código de honra." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "Você não está preenchendo um ou mais campos" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "O nome de usuário e a senha não conferem" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Senha: " + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -387,7 +462,7 @@ msgstr "Feminino" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Outro" @@ -443,6 +518,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -565,103 +647,6 @@ msgstr "Já existe uma conta com o nome de usuário público '{username}'." msgid "An account with the Email '{email}' already exists." msgstr "Já existe uma conta com o e-mail '{email}'." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Erro (401 {field}). Envie-nos um e-mail." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Para inscrever-se, é preciso seguir o código de honra." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Por favor, aceite os termos do serviço." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "O nome de usuário deve ter no mínimo dois caracteres" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "É necessário um endereço de e-mail válido" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "O seu nome legal deve conter no mínimo dois caracteres" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "É necessária uma senha válida" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Por favor, aceite os termos do serviço" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Por favor, aceite o código de honra" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "É obrigatório informar o nível de formação" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "É obrigatório informar o gênero" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "É obrigatório informar o seu ano de nascimento" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "É obrigatório informar o seu endereço" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "A descrição dos seus objetivos é obrigatória" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "É obrigatório informar a cidade" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "É obrigatório informar país" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "Você não está preenchendo um ou mais campos" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "É necessário um endereço de e-mail válido." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"O nome de usuário deve conter apenas letras e números, sem espaços. 0-9" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Senha: " - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "O nome de usuário e a senha não conferem" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Não foi possível enviar o e-mail de ativação." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -725,7 +710,7 @@ msgstr "" msgid "Name required" msgstr "Nome (obrigatório)" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID inválido" @@ -1161,7 +1146,7 @@ msgstr "errada" msgid "incomplete" msgstr "incompleta" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "não respondida" @@ -1174,7 +1159,7 @@ msgstr "processando" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: marcação inesperada {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "Resposta recebida." @@ -1218,7 +1203,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "Não é possível conectar à fila" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "Sem fórmula especificada." @@ -1226,7 +1211,7 @@ msgstr "Sem fórmula especificada." msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1265,13 +1250,11 @@ msgstr "A execução de um código em Javascript suspeito não é permitida." #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1303,17 +1286,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Houve um problema com a resposta da equipe para este problema." @@ -1363,7 +1344,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1532,7 +1512,6 @@ msgstr "Dados XML para a anotação" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1563,7 +1542,6 @@ msgstr "Anotação" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "Este nome aparece na navegação horizontal no alto da página" @@ -1624,7 +1602,6 @@ msgstr "" "Determina quando mostrar a resposta para o problema. Um valor definido por " "padrão pode ser alterado nas configurações avançadas." -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Sempre" @@ -1653,7 +1630,6 @@ msgstr "Correto ou Atrasado" msgid "Past Due" msgstr "Expirada" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Nunca" @@ -1806,8 +1782,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "O problema está encerrado." @@ -2364,12 +2338,6 @@ msgstr "" "Utilize o seu esboço do curso para desenvolver a sua primeira seção e " "subseção." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "Editar esboço do curso" @@ -2505,9 +2473,6 @@ msgstr "" "descrição e outras informações. Elabore o texto que os alunos verão antes de" " optar pela inscrição no seu curso." -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "Editar o calendário e detalhes do curso" @@ -2748,7 +2713,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Sobre" @@ -2828,8 +2792,6 @@ msgstr "" msgid "Text" msgstr "Texto" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3722,7 +3684,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3869,7 +3830,6 @@ msgstr "Avaliação pelo instrutor" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "Avaliação por IA" @@ -3925,7 +3885,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Erro ao obter o parecer do corretor." @@ -3963,7 +3922,6 @@ msgstr "Em andamento" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Concluída" @@ -4319,7 +4277,6 @@ msgstr "Pesquisar" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html #, fuzzy msgid "Copyright" msgstr "" @@ -4328,15 +4285,12 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "Direito autoral" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Nome de usuário" @@ -4449,6 +4403,22 @@ msgstr "O usuário {username} não existe." msgid "User {username} has never accessed problem {location}" msgstr "O usuário {username} nunca acessou o problema {location}" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ERRO: não foram localizados os arquivos de vídeo!" @@ -4503,7 +4473,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4562,7 +4531,7 @@ msgstr "senha corrigida" msgid "All ok!" msgstr "Tudo certo!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Por favor, digite o nome de usuário" @@ -4627,12 +4596,11 @@ msgstr "Número total de usuários" msgid "Courses loaded in the modulestore" msgstr "Cursos carregado na seção de módulos" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "nome de usuário" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "e-mail" @@ -4704,7 +4672,7 @@ msgstr "Alternou corretamente para o ramo: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "Nome do curso" @@ -4740,7 +4708,7 @@ msgstr "" msgid "Deleted" msgstr "Excluído" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "identificador de curso" @@ -4776,22 +4744,10 @@ msgstr "" "Importar o repositório git especificado e o ramo opcional na loja do módulo " "e no diretório específico opcional." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "Reabrir tópico" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "Fechar tópico" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "O título não pode ficar vazio" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "O corpo não pode ficar vazio" @@ -4800,7 +4756,6 @@ msgstr "O corpo não pode ficar vazio" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "O nível do comentário é muito profundo" @@ -4903,12 +4858,9 @@ msgstr "ID do usuário" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "E-mail" @@ -5036,18 +4988,14 @@ msgstr "" msgid "coupon id is None" msgstr "O id do cupom está vazio" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -5078,7 +5026,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -5188,7 +5135,6 @@ msgstr "Por favor, digite o nome da tarefa" msgid "Invalid assignment name '{name}'" msgstr "Nome da tarefa inválido '{name}'" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "E-mail externo" @@ -5257,8 +5203,8 @@ msgstr "ID" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5316,7 +5262,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Data de entrega prorrogada" @@ -5375,7 +5320,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Não há informações disponíveis sobre o status" @@ -5648,7 +5592,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "Visualizar as tarefas marcadas como inapropriadas pelos alunos." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Novas tarefas a serem corrigidas" @@ -5703,7 +5646,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5793,8 +5736,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5889,7 +5831,6 @@ msgstr "Data de reembolso" msgid "Amount of Refund" msgstr "Quantia do reembolso" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Taxas de serviço (se houver)" @@ -5919,12 +5860,10 @@ msgstr "Moeda" msgid "Comments" msgstr "Comentários" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Universidade" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Curso" @@ -6025,7 +5964,7 @@ msgstr "" msgid "Course added to cart." msgstr "Curso adicionado ao carrinho." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -6062,7 +6001,6 @@ msgstr "Você não tem permissão para visualizar esta página. " msgid "The payment processor did not return a required parameter: {0}" msgstr "O processador de pagamentos não retornou o parâmetro exigido: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -6221,7 +6159,6 @@ msgstr "" "Fundos insuficientes na conta. Correção possível: tente utilizar outra forma" " de pagamento" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Razão desconhecida" @@ -6609,7 +6546,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Tirar foto" @@ -6717,7 +6653,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "A redefinição da sua senha foi concluída" @@ -6922,7 +6857,6 @@ msgstr "Excluir artigo" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Excluir" @@ -6981,12 +6915,9 @@ msgstr "Pré-visualizar" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -7006,10 +6937,7 @@ msgstr "Pré-visualização do Wiki" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "janela aberta" @@ -7050,7 +6978,7 @@ msgstr "Registro automático: " msgid "Change" msgstr "Alterar" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Combinar seleção com a atual..." @@ -7062,11 +6990,11 @@ msgstr "Trocar pela versão selecionada" msgid "Wiki Revision Preview" msgstr "Pré-visualização da revisão do Wiki " -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Voltar para a tela do histórico" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Trocar para esta versão" @@ -7090,7 +7018,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Depois, é importante fazer uma revisão manual. " -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Criar uma nova versão combinada" @@ -7330,30 +7258,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Senha" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7418,8 +7336,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Código de honra" @@ -7428,23 +7344,19 @@ msgstr "Código de honra" msgid "Terms of Service and Honor Code" msgstr "Termos de serviço e código de honra" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Termos de serviço" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "ID de atualização de curso inválido." @@ -7572,7 +7484,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7606,7 +7517,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7816,8 +7731,7 @@ msgstr "Página não encontrada" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7829,13 +7743,8 @@ msgstr "" msgid "close" msgstr "fechar" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7855,7 +7764,7 @@ msgstr "Ignorar" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Configurações" @@ -7864,13 +7773,11 @@ msgstr "Configurações" msgid "Error:" msgstr "Erro:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organização:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7885,10 +7792,8 @@ msgstr "Cursos" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "E-mail" @@ -7898,7 +7803,7 @@ msgstr "E-mail" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "Por exemplo: nomedousuario@dominio.com.br" @@ -7930,14 +7835,13 @@ msgstr "Por exemplo: Maria Silva" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Nome de usuário público" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "Por exemplo: MariaSilva" @@ -7951,7 +7855,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Detalhes" @@ -7979,13 +7883,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Políticas de privacidade" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ajuda" @@ -8006,7 +7908,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -8089,7 +7990,7 @@ msgstr "Novo" msgid "Dashboard" msgstr "Painel de controle" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "editar" @@ -8133,7 +8034,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Redefinir senha" @@ -8141,7 +8042,7 @@ msgstr "Redefinir senha" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -8177,7 +8078,7 @@ msgstr "" "Um e-mail foi enviado para {email}. Clique no link da mensagem para alterar " "a sua senha." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Alterar e-mail" @@ -8230,15 +8131,6 @@ msgstr "Alterar o meu nome" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Cancelar inscrição" @@ -8303,7 +8195,7 @@ msgstr "Alunos recusados:" msgid "Debug: " msgstr "Depurar erros:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Falha de autenticação externa" @@ -8340,7 +8232,7 @@ msgstr "Enviado" msgid "Puzzle Leaderboard" msgstr "Classificação do quebra-cabeça" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8383,13 +8275,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Contato" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Perguntas frequentes" @@ -8411,31 +8301,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8452,7 +8342,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Carreiras" @@ -8468,7 +8357,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Redefinir senha" @@ -8497,7 +8385,7 @@ msgstr "Redefinir minha senha" msgid "Email is incorrect." msgstr "O e-mail está incorreto. " -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "Ajuda do {platform_name}" @@ -8568,8 +8456,6 @@ msgstr "Inclua mensagens de erro, passos que levaram ao problema, etc. " #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8715,7 +8601,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "Informações úteis" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Entrar com OpenID" @@ -8915,7 +8801,7 @@ msgstr "Dados brutos:" msgid "Accepted" msgstr "Aceito" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Erro" @@ -8936,17 +8822,15 @@ msgstr "Confirmar" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Como funciona" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Localizar cursos" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8966,13 +8850,11 @@ msgstr "" msgid "Shopping Cart" msgstr "Carrinho de compras" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Registre-se" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8990,7 +8872,7 @@ msgstr "Navegação global" msgid "Schools" msgstr "Escolas" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Registre-se agora" @@ -9060,7 +8942,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Os seguintes erros ocorreram ao processar a sua inscrição:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -9073,7 +8954,6 @@ msgid "Enter a public username:" msgstr "Insira um nome de usuário público:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" "Será exibido em todas as discussões ou fóruns nos quais você participar" @@ -9213,11 +9093,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Por favor, preencha os campos abaixo para registrar uma conta." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Necessário para todos os certificados que você obtiver" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "não poderá ser alterado depois" @@ -9271,12 +9151,12 @@ msgstr "" "{dashboard_link_start} aqui {link_end} para voltar ao seu painel de " "controle." -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Anterior" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Próximo" @@ -9285,15 +9165,15 @@ msgstr "Próximo" msgid "Sign Up for {platform_name}" msgstr "Registre-se no {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "ex.: seunome@dominio.com.br" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "ex.: seunome (mostrado nos fóruns)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "ex.: seu nome (para certificados)" @@ -9394,7 +9274,7 @@ msgstr "Excluir o status do aluno" msgid "Rescore Student Submission" msgstr "Reavaliar a tarefa do aluno" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Campos do módulo" @@ -9450,7 +9330,6 @@ msgstr "Formação de equipe e inscrição" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Registros do Git" @@ -9530,6 +9409,18 @@ msgstr "Excluir curso do site" msgid "Platform Version" msgstr "Versão da plataforma" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9544,6 +9435,11 @@ msgstr "Data" msgid "Git Action" msgstr "Ação do git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9699,7 +9595,7 @@ msgstr "Voltar para o início da transcrição." msgid "Download video" msgstr "Baixar vídeo" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Baixar transcrição" @@ -9715,7 +9611,6 @@ msgstr "As suas palavras:" msgid "Total number of words:" msgstr "Número total de palavras:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Abrir calculadora" @@ -10065,8 +9960,6 @@ msgstr "{chapter}, capítulo atual" msgid "due {date}" msgstr "data de entrega {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -10128,12 +10021,10 @@ msgstr "Visão geral" msgid "Share with friends and family!" msgstr "Compartilhe com seus amigos e família!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -10189,6 +10080,17 @@ msgstr "" msgid "Additional Resources" msgstr "Recursos adicionais " +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Inscrever-se" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -10269,7 +10171,7 @@ msgid "No content has been added to this course" msgstr "Nenhum conteúdo foi adicionado a este curso" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -10309,11 +10211,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Visualizar atualizações no Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Atualizações e notícias do curso" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Navegação das apostilas" @@ -10321,7 +10223,6 @@ msgstr "Navegação das apostilas" msgid "Course Handouts" msgstr "Apostilas do curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "Versão antiga do painel de controle do instrutor" @@ -10379,7 +10280,6 @@ msgstr "Gerenciar grupos" msgid "Grade Downloads" msgstr "Downloads de notas" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -10412,7 +10312,6 @@ msgstr "" "As tarefas definidas para este curso devem corresponder às do boletim para " "que tudo funcione corretamente!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Nome do boletim:" @@ -10426,7 +10325,6 @@ msgstr "Nome da tarefa:" msgid "Course-specific grade adjustment" msgstr "Ajustes de notas específicos para o curso" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10461,7 +10359,6 @@ msgstr "Data de inscrição" msgid "Pull enrollment from remote gradebook" msgstr "Extrair inscrições do boletim virtual" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Seção:" @@ -10506,7 +10403,6 @@ msgstr "Dia" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Alunos" @@ -10599,7 +10495,6 @@ msgstr "Duração (segundos)" msgid "Task Progress" msgstr "Progresso da tarefa" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "desconhecido" @@ -10686,8 +10581,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Progresso do curso do aluno '{username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "Baixar certificado " +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -10767,7 +10672,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "O seu {cert_name_short} está sendo gerado" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Este link abrirá/baixará um documento em PDF" @@ -10776,25 +10680,6 @@ msgstr "Este link abrirá/baixará um documento em PDF" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"Como não recebemos o seu conjunto de fotos de verificação quando, o seu " -"{cert_name_long} foi gerado, não foi possível fornecer um {cert_name_short} " -"verificado. Foi emitido um {cert_name_short} com código de honra no seu " -"lugar." - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "Faça o download do seu {cert_name_short} (PDF)" @@ -10815,11 +10700,29 @@ msgstr "Baixe o seu {cert_name_short} ID verificado (PDF)" msgid "Complete our course feedback survey" msgstr "Responda a pesquisa de opinião sobre o nosso curso" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"Como não recebemos o seu conjunto de fotos de verificação quando, o seu " +"{cert_name_long} foi gerado, não foi possível fornecer um {cert_name_short} " +"verificado. Foi emitido um {cert_name_short} com código de honra no seu " +"lugar." + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "Imagem de capa do curso {course_number} {course_name}" @@ -10828,11 +10731,6 @@ msgstr "Imagem de capa do curso {course_number} {course_name}" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Inscrito como:" @@ -10853,7 +10751,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "Você está inscrito como aluno verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10863,7 +10760,6 @@ msgstr "" msgid "Verified" msgstr "Verificado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "Você está inscrito como um aluno ouvinte" @@ -10922,7 +10818,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10980,44 +10875,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Visualizar curso arquivado" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Visualizar curso " -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Configurações do e-mail" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -11033,7 +10917,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: Verificar novamente até {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Ações de notificação" @@ -11080,7 +10963,6 @@ msgstr "Recusada:" msgid "Approved:" msgstr "Aprovada: " -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "Status da verificação da identidade" @@ -11283,9 +11165,7 @@ msgstr "Editar publicação" msgid "Edit post title" msgstr "Editar título da publicação" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Título" @@ -11297,7 +11177,6 @@ msgstr "Atualizar publicação" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Adicionar comentário" @@ -11318,7 +11197,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11487,7 +11365,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11506,7 +11383,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11621,7 +11497,6 @@ msgstr "" msgid "User Profile" msgstr "Perfil do usuário" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "…" @@ -12414,8 +12289,6 @@ msgstr "Marcar o conteúdo como inapropriado para revisão posterior." msgid "Skip" msgstr "Pular" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -12475,12 +12348,10 @@ msgstr "Nome de exibição do curso:" msgid "Has the course started?" msgstr "O curso já começou?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Sim" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Não" @@ -12636,7 +12507,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12784,7 +12654,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12849,7 +12718,6 @@ msgstr "" msgid "Edit Coupon" msgstr "Editar Cupom" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "Atualizar Cupom" @@ -12883,9 +12751,6 @@ msgstr "" "data de entrega anterior para um determinado aluno." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -12894,15 +12759,10 @@ msgstr "" "aqui:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "E-mail ou nome de usuário do aluno" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Escolha a unidade corrigida:" @@ -12980,7 +12840,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -13098,7 +12957,6 @@ msgstr "Carregando a lista de problemas..." msgid "Gender Distribution" msgstr "Distribuição de gênero" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Painel de controle do instrutor" @@ -13111,7 +12969,6 @@ msgstr "Retornar à versão antiga do painel de controle" msgid "Batch Enrollment" msgstr "Inscrição em lote" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -13127,12 +12984,10 @@ msgstr "" "Você não receberá notificações caso as mensagens para o seu e-mail retornem," " por favor, certifique-se que o seu e-mail foi digitado corretamente." -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Endereços de e-mail/Nomes de usuário" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Inscrever-se automaticamente" @@ -13161,12 +13016,10 @@ msgstr "" "Marcar esta caixa não terá efeito se \"Cancelar inscrição\" for selecionado." " " -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Notificar usuários por e-mail" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " @@ -13175,10 +13028,6 @@ msgstr "" "Se esta opção estiver marcada, os usuários receberão uma " "notificação por e-mail." -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Inscrever-se" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -13397,7 +13246,6 @@ msgid "" msgstr "" "Clique em qualquer barra para listar os alunos que abriram a subseção." -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "É possível também baixar estes dados em um arquivo CSV. " @@ -13434,12 +13282,10 @@ msgstr "Baixar aluno aberto como CSV" msgid "Download Student Grades as a CSV" msgstr "Baixe as notas dos alunos como arquivo CSV" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "Esta é uma lista parcial, para ver todos os alunos baixe como csv." -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "Enviar e-mail" @@ -13452,12 +13298,10 @@ msgstr "Enviar para:" msgid "Myself" msgstr "mim mesmo" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Equipe e instrutores" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Todos (alunos, equipe e instrutores)" @@ -13552,7 +13396,6 @@ msgstr "" msgid "Show Email Task History" msgstr "Mostrar histórico de tarefas por e-mail" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13593,19 +13436,16 @@ msgstr "Página de progresso do aluno" msgid "Student-specific grade adjustment" msgstr "Ajustes de notas específicas de alunos" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "Especifique um problema no curso aqui com o seu local completo:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "Local do problema" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13993,7 +13833,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -14015,7 +13854,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -14203,15 +14041,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -14318,7 +14151,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -14344,19 +14176,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -14416,12 +14245,10 @@ msgstr "" "Esta página foi deixada intencionalmente em branco. Ela não é usada pelo " "edx.org, mas fica aqui para possível uso por instalações do Open edX." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -14434,14 +14261,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Kit de mídia" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Na imprensa" @@ -14729,7 +14553,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14739,19 +14562,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Tirar foto novamente" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "Ótimo" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Dicas para tirar uma boa foto" @@ -14774,7 +14594,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Assim que estiver na posição, acione o botão da câmera" @@ -14785,19 +14604,16 @@ msgstr "para tirar a foto" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Utilize o botão com o visto" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "quando estiver satisfeito com a foto" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Dúvidas comuns" @@ -14817,7 +14633,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "Como esta foto será utilizada?" @@ -14901,7 +14716,6 @@ msgstr "Concluir outras novas verificações pendentes" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Volte para o ponto em que parou" @@ -14917,15 +14731,10 @@ msgstr "A sua identidade já está verificada" msgid "You currently need to re-verify for the following courses:" msgstr "Você precisa fazer uma nova verificação para os seguintes cursos:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "Verificar novamente até {date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "Verificar novamente para {course_number}" @@ -15190,7 +14999,6 @@ msgstr "" "Por favor, revise as fotos e verifique se elas satisfazem os requisitos " "abaixo." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "A foto acima deve satisfazer os seguintes requisitos:" @@ -15203,7 +15011,6 @@ msgstr "Estar bem iluminada" msgid "Show your whole face" msgstr "Mostrar todo o seu rosto" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -15270,7 +15077,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Retornar ao painel de controle" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "Ocorreu um erro durante a nova verificação " @@ -15289,9 +15095,6 @@ msgstr "" "Por favor, entre em contato com o suporte caso considere que esta mensagem " "foi enviada por engano." -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(ativo){span_end}" @@ -15396,8 +15199,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -15417,8 +15219,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -15488,7 +15289,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -15523,7 +15324,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -15536,7 +15336,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -15659,7 +15459,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -15669,7 +15469,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -15679,8 +15478,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15755,7 +15552,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -15770,7 +15567,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -15825,7 +15621,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15884,8 +15680,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15904,11 +15700,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15972,7 +15768,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -16014,7 +15809,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -16142,8 +15937,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -16187,13 +15981,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -16216,10 +16008,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -16268,8 +16065,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -16291,7 +16088,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -16336,7 +16133,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -16378,7 +16174,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -16479,7 +16275,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -16610,8 +16406,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -16627,7 +16422,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -16666,7 +16461,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -16676,7 +16471,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -16707,7 +16502,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16737,7 +16532,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16782,7 +16577,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16803,7 +16598,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16811,7 +16606,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16823,7 +16618,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16875,7 +16670,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16883,7 +16678,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16943,7 +16738,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16997,7 +16792,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -17050,13 +16845,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -17295,7 +17088,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -17354,8 +17146,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -17438,7 +17229,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -17664,7 +17454,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -17716,8 +17505,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17899,7 +17687,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17939,7 +17727,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17959,12 +17747,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17989,7 +17775,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -18005,7 +17791,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -18056,11 +17842,11 @@ msgstr "" "utilizar funções mais complexas, tais como adicionar plugins, metadados, " "artigos relacionados, etc..." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Conteúdo" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Índice" @@ -18448,11 +18234,11 @@ msgstr "Revisões do anexo" msgid "%s was successfully added." msgstr "%s foi adicionado corretamente." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Não foi possível salvar o seu arquivo: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo index 3f461dcb0a..e65ca9014a 100644 Binary files a/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo and b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po index a46e09439f..d3cb074855 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -49,6 +49,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Alexander Rodrigo Ferreira , 2015 # Álex Filipe , 2014 # Andrei Bosco Bezerra Torres , 2013 # brk0_0, 2013 @@ -113,9 +114,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-12 16:04+0000\n" -"Last-Translator: Luiz Cardineli \n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" +"Last-Translator: Sarina Canelake \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -127,7 +128,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -156,8 +156,6 @@ msgstr "Este link será aberto em uma nova janela/guia do navegador" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -165,7 +163,6 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "Excluir" @@ -256,7 +253,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points) ponto possível)" msgstr[1] "(%(num_points)s pontos possíveis)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Resposta:" @@ -264,7 +260,6 @@ msgstr "Resposta:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Ocultar resposta" @@ -285,7 +280,6 @@ msgstr "Resposta ocultada" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "não respondida" @@ -304,7 +298,6 @@ msgstr "É necessário escolher uma avaliação para poder enviar." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" "A sua pontuação não cumpriu os critérios para passar para a próxima etapa." @@ -380,11 +373,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Exibir pergunta" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Ocultar pergunta" @@ -392,7 +383,6 @@ msgstr "Ocultar pergunta" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -403,21 +393,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1280,7 +1267,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1294,7 +1280,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1631,18 +1616,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1761,7 +1742,6 @@ msgstr "Alta definição ativada" msgid "HD off" msgstr "Alta definição desativada" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Posição do vídeo" @@ -1808,7 +1788,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Ocultar discussão" @@ -1818,13 +1797,9 @@ msgid "Show Discussion" msgstr "Mostrar discussão" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1861,8 +1836,6 @@ msgstr "" "novamente." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2169,12 +2142,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2214,7 +2185,6 @@ msgstr "Data da publicação" msgid "More" msgstr "Mais" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Minhas anotações" @@ -2223,32 +2193,26 @@ msgstr "Minhas anotações" msgid "Instructor" msgstr "Instrutor" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Público" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Pesquisar" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Usuários" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "Marcações" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "Texto da anotação" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "Limpar" @@ -2342,7 +2306,6 @@ msgstr "Nome de usuário" msgid "Email" msgstr "E-mail" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Revogar acesso" @@ -2355,7 +2318,6 @@ msgstr "Digite um nome de usuário ou email" msgid "Please enter a username or email." msgstr "Digite um nome de usuário ou e-mail." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Erro ao alterar as permissões do usuário." @@ -2574,7 +2536,6 @@ msgstr "" msgid "Error sending email." msgstr "Erro ao enviar o e-mail." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Não há histórico de e-mails para este curso." @@ -2588,10 +2549,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Adicione o endereço de e-mail ou o nome de usuário de um aluno." @@ -2604,12 +2561,6 @@ msgstr "" "Erro ao obter o url de progresso do aluno '<%= student_id %>'. Certifique-se" " que o identificador de estudante esteja escrito corretamente." -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "Por favor, informe o local do problema." @@ -2896,7 +2847,6 @@ msgstr "O sistema obteve um estado inválido: <%= state %>" msgid "System got into invalid state for submission: " msgstr "O sistema atingiu um estado inválido para envio:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Ocultar)" @@ -2990,7 +2940,7 @@ msgstr "digite a descrição da imagem aqui" msgid "enter link description here" msgstr "digite a descrição do link aqui" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "insira o código aqui" @@ -3060,6 +3010,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3081,7 +3035,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3089,7 +3043,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3262,6 +3216,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3308,18 +3270,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3328,7 +3278,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Não foi possível recuperar dados. Tente novamente mais tarde." @@ -3365,7 +3314,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3376,7 +3325,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3475,8 +3423,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3685,7 +3633,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3747,8 +3694,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3789,18 +3765,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3809,11 +3773,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3888,8 +3847,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3996,7 +3954,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -4035,7 +3992,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4063,7 +4019,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4178,14 +4133,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4295,7 +4245,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4463,7 +4412,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4521,6 +4469,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4692,6 +4644,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4970,7 +4930,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -5038,6 +4997,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -5048,10 +5021,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5077,12 +5058,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5182,7 +5161,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5253,10 +5231,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5389,7 +5363,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5468,7 +5441,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5522,7 +5494,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5642,15 +5613,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5660,11 +5625,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5680,7 +5642,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5705,8 +5666,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5733,8 +5692,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.mo b/conf/locale/pt_PT/LC_MESSAGES/django.mo index 43f218f97e..91586f988a 100644 Binary files a/conf/locale/pt_PT/LC_MESSAGES/django.mo and b/conf/locale/pt_PT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.po b/conf/locale/pt_PT/LC_MESSAGES/django.po index 38964eb32a..c8f943d3e3 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/django.po +++ b/conf/locale/pt_PT/LC_MESSAGES/django.po @@ -28,6 +28,7 @@ # Carlos , 2013 # David Azevedo , 2014 # Carlos , 2013 +# Ricardo Simões , 2015 # CptOrange , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file @@ -63,7 +64,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Ricardo Simões \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" @@ -94,7 +95,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -102,7 +103,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -114,7 +114,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -141,15 +140,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -243,6 +238,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -263,7 +334,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -320,6 +391,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -430,102 +508,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -586,7 +568,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1020,7 +1002,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1033,7 +1015,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1072,7 +1054,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1080,7 +1062,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1119,13 +1101,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1157,17 +1137,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1210,7 +1188,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1366,7 +1343,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1398,7 +1374,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1450,7 +1425,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1479,7 +1453,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1620,8 +1593,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2138,12 +2109,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2262,9 +2227,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2502,7 +2464,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2578,8 +2539,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3158,7 +3117,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3410,7 +3369,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3553,7 +3511,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3601,7 +3558,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3639,7 +3595,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3936,19 +3891,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4056,6 +4007,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4104,7 +4071,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4164,7 +4130,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4229,12 +4195,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4297,9 +4262,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4333,7 +4297,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4367,22 +4331,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4391,7 +4343,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4492,12 +4443,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4611,18 +4559,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4653,7 +4597,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4765,7 +4708,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4832,8 +4774,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4887,7 +4829,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4946,7 +4887,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5195,7 +5135,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5245,7 +5184,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5335,8 +5274,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5432,7 +5370,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5462,14 +5399,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5562,7 +5496,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5599,7 +5533,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5729,7 +5662,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6076,7 +6008,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6182,7 +6113,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6364,7 +6294,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6417,12 +6346,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6442,10 +6368,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6482,7 +6405,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6494,11 +6417,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6520,7 +6443,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6748,12 +6671,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6763,21 +6683,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6855,8 +6767,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6868,12 +6778,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6883,11 +6791,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6999,7 +6905,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7029,7 +6934,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7245,8 +7154,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7258,13 +7166,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7284,7 +7187,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7293,13 +7196,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7314,10 +7215,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7327,7 +7226,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7359,14 +7258,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7380,7 +7278,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7407,13 +7305,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7434,7 +7330,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7517,7 +7412,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7561,7 +7456,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7569,7 +7464,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7603,7 +7498,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7654,15 +7549,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7726,7 +7612,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7763,7 +7649,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7806,13 +7692,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7834,31 +7718,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7875,7 +7759,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7891,7 +7774,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7918,7 +7800,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7978,8 +7860,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8116,7 +7996,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8297,7 +8177,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8318,17 +8198,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8348,13 +8226,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8372,7 +8248,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8437,7 +8313,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8448,7 +8323,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8569,11 +8443,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8624,12 +8498,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8638,15 +8512,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8747,7 +8621,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8803,7 +8677,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8881,6 +8754,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8895,6 +8780,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9032,7 +8922,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9048,7 +8938,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9387,8 +9276,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9446,12 +9333,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9505,6 +9390,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9581,7 +9477,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9617,11 +9513,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9629,7 +9525,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9683,7 +9578,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9714,7 +9608,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9728,7 +9621,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9763,7 +9655,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9808,7 +9699,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9899,7 +9789,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9986,7 +9875,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10052,7 +9951,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10061,21 +9959,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10094,11 +9977,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10107,11 +10004,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10132,7 +10024,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10142,7 +10033,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10201,7 +10091,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10255,44 +10144,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10308,7 +10186,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10350,7 +10227,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10548,9 +10424,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10562,7 +10436,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10583,7 +10456,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10748,7 +10620,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10767,7 +10638,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10880,7 +10750,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11604,8 +11473,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11665,12 +11532,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11808,7 +11673,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11956,7 +11820,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12021,7 +11884,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12051,24 +11913,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12136,7 +11990,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12250,7 +12103,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12263,7 +12115,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12275,12 +12126,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12302,22 +12151,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12499,7 +12342,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12534,12 +12376,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12552,12 +12392,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12638,7 +12476,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12677,19 +12514,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13031,7 +12865,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13053,7 +12886,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13238,15 +13070,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13353,7 +13180,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13379,19 +13205,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13446,12 +13269,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13464,14 +13285,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13743,7 +13561,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13751,19 +13568,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13784,7 +13598,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13795,19 +13608,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13825,7 +13635,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13898,7 +13707,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13914,15 +13722,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14146,7 +13949,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14159,7 +13961,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14215,7 +14016,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14230,9 +14030,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14333,8 +14130,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14354,8 +14150,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14425,7 +14220,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14460,7 +14255,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14473,7 +14267,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14596,7 +14390,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14606,7 +14400,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14616,8 +14409,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14692,7 +14483,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14707,7 +14498,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14762,7 +14552,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14821,8 +14611,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14841,11 +14631,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14909,7 +14699,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14951,7 +14740,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15079,8 +14868,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15124,13 +14912,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15153,10 +14939,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15205,8 +14996,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15228,7 +15019,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15273,7 +15064,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15315,7 +15105,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15416,7 +15206,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15547,8 +15337,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15564,7 +15353,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15603,7 +15392,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15613,7 +15402,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15644,7 +15433,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15674,7 +15463,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15719,7 +15508,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15740,7 +15529,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15748,7 +15537,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15760,7 +15549,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15812,7 +15601,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15820,7 +15609,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15880,7 +15669,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15934,7 +15723,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15987,13 +15776,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16232,7 +16019,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16291,8 +16077,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16375,7 +16160,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16601,7 +16385,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16653,8 +16436,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16834,7 +16616,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16874,7 +16656,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16894,12 +16676,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16924,7 +16704,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16940,7 +16720,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16987,11 +16767,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17345,11 +17125,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo b/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo index 37dc7b1e63..44e4f96c67 100644 Binary files a/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo and b/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po index 54cc864b9a..6b5786abd8 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po @@ -37,8 +37,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -91,8 +90,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -100,17 +97,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -203,7 +197,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -211,7 +204,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -232,7 +224,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -251,7 +242,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -315,11 +305,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -327,7 +315,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -338,21 +325,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1223,7 +1207,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1237,7 +1220,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1574,18 +1556,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1703,7 +1681,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1750,7 +1727,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1760,13 +1736,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1796,8 +1768,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2097,12 +2067,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2143,7 +2111,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2152,32 +2119,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2278,7 +2239,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2291,7 +2251,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2479,7 +2438,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2492,10 +2450,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2506,12 +2460,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2765,7 +2713,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2859,7 +2806,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2929,6 +2876,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2950,7 +2901,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2958,7 +2909,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3131,6 +3082,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3177,18 +3136,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3197,7 +3144,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3237,7 +3183,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "O Studio está a ter problemas a guardar o seu trabalho" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3248,7 +3194,6 @@ msgstr "O Studio está a ter problemas a guardar o seu trabalho" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Guardando" @@ -3348,8 +3293,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "Escolha um novo ficheiro" @@ -3565,7 +3510,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "O prazo de tolerância deve ser especificado no formato HH:MM. " #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3623,8 +3567,36 @@ msgstr "Fazer o Upload de um Novo Ficheiro" msgid "Load Another File" msgstr "Carregar Outro Ficheiro" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "Não está em Uso" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "Usado em %(count)s unidade" +msgstr[1] "Usado em %(count)s unidades" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Course Outline" +msgstr "Descrição Geral do Curso" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3665,18 +3637,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "Contém %(count)s grupo" msgstr[1] "Contém %(count)s grupos" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "Não está em Uso" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "Usado em %(count)s unidade" -msgstr[1] "Usado em %(count)s unidades" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3687,10 +3647,6 @@ msgstr "" "A configuração de Grupo não está em uso. Começe por adicionar uma " "experiência de conteúdo a qualquer Unidade via %(outlineAnchor)s." -#: cms/static/js/views/group_configuration_details.js -msgid "Course Outline" -msgstr "Descrição Geral do Curso" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3765,8 +3721,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3909,7 +3864,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Discard Changes" msgstr "Descartar Alterações" @@ -3938,7 +3892,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Tornar Visível para Estudantes" @@ -4065,14 +4018,9 @@ msgstr "" msgid "Upload translation" msgstr "Enviar tradução" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4182,7 +4130,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4350,7 +4297,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4408,6 +4354,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4579,6 +4529,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4857,7 +4815,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4925,6 +4882,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4935,10 +4906,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4964,12 +4943,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5069,7 +5046,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5140,10 +5116,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5276,7 +5248,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5355,7 +5326,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5409,7 +5379,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5529,15 +5498,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5547,11 +5510,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5567,7 +5527,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5592,8 +5551,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5620,8 +5577,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ro/LC_MESSAGES/django.mo b/conf/locale/ro/LC_MESSAGES/django.mo index 6c725b2e6e..d08869ee97 100644 Binary files a/conf/locale/ro/LC_MESSAGES/django.mo and b/conf/locale/ro/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ro/LC_MESSAGES/django.po b/conf/locale/ro/LC_MESSAGES/django.po index 440183b8bd..2cd9361a4c 100644 --- a/conf/locale/ro/LC_MESSAGES/django.po +++ b/conf/locale/ro/LC_MESSAGES/django.po @@ -44,14 +44,15 @@ # # Translators: # Dragos Ardeleanu , 2014 +# Irina Maria Curuia, 2015 # Rares Mihai Popa , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" -"PO-Revision-Date: 2014-12-30 16:21+0000\n" -"Last-Translator: Dragos Ardeleanu \n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" +"PO-Revision-Date: 2015-02-18 13:20+0000\n" +"Last-Translator: Irina Maria Curuia\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +81,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -88,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -100,7 +100,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -127,15 +126,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -229,6 +224,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -249,7 +320,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -306,6 +377,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -416,102 +494,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -574,7 +556,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1009,7 +991,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1022,7 +1004,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1061,7 +1043,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1069,7 +1051,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1108,13 +1090,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1146,17 +1126,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1199,7 +1177,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1355,7 +1332,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1387,7 +1363,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1439,7 +1414,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1468,7 +1442,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1609,8 +1582,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2127,12 +2098,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2251,9 +2216,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2491,7 +2453,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2567,8 +2528,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3149,7 +3108,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3401,7 +3360,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3544,7 +3502,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3592,7 +3549,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3630,7 +3586,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3927,19 +3882,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4048,6 +3999,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4096,7 +4063,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4156,7 +4122,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4221,12 +4187,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4289,9 +4254,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4325,7 +4289,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4359,22 +4323,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4383,7 +4335,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4484,12 +4435,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4603,18 +4551,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4645,7 +4589,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4759,7 +4702,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4826,8 +4768,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4881,7 +4823,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4940,7 +4881,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5189,7 +5129,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5239,7 +5178,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5329,8 +5268,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5426,7 +5364,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5456,14 +5393,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5556,7 +5490,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5593,7 +5527,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5723,7 +5656,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6070,7 +6002,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6176,7 +6107,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6358,7 +6288,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6411,12 +6340,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6436,10 +6362,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6476,7 +6399,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6488,11 +6411,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6514,7 +6437,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6742,12 +6665,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6757,21 +6677,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6849,8 +6761,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6862,12 +6772,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6877,11 +6785,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6993,7 +6899,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7023,7 +6928,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7239,8 +7148,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7252,13 +7160,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7278,7 +7181,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7287,13 +7190,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7308,10 +7209,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7321,7 +7220,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7353,14 +7252,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7374,7 +7272,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7401,13 +7299,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7428,7 +7324,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7511,7 +7406,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7555,7 +7450,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7563,7 +7458,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7597,7 +7492,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7648,15 +7543,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7720,7 +7606,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7757,7 +7643,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7800,13 +7686,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7828,31 +7712,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7869,7 +7753,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7885,7 +7768,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7912,7 +7794,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7972,8 +7854,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8111,7 +7991,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8292,7 +8172,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8313,17 +8193,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8343,13 +8221,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8367,7 +8243,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8432,7 +8308,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8443,7 +8318,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8564,11 +8438,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8619,12 +8493,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8633,15 +8507,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8742,7 +8616,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8798,7 +8672,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8876,6 +8749,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8890,6 +8775,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9027,7 +8917,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9043,7 +8933,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9384,8 +9273,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9443,12 +9330,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9502,6 +9387,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9578,7 +9474,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9614,11 +9510,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9626,7 +9522,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9680,7 +9575,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9711,7 +9605,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9725,7 +9618,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9760,7 +9652,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9805,7 +9696,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9896,7 +9786,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9983,7 +9872,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10049,7 +9948,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10058,21 +9956,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10091,11 +9974,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10104,11 +10001,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10129,7 +10021,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10139,7 +10030,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10199,7 +10089,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10253,44 +10142,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10306,7 +10184,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10348,7 +10225,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10546,9 +10422,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10560,7 +10434,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10581,7 +10454,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10746,7 +10618,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10765,7 +10636,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10880,7 +10750,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11604,8 +11473,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11665,12 +11532,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11808,7 +11673,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11956,7 +11820,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12021,7 +11884,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12051,24 +11913,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12136,7 +11990,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12250,7 +12103,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12263,7 +12115,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12275,12 +12126,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12302,22 +12151,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12499,7 +12342,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12534,12 +12376,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12552,12 +12392,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12638,7 +12476,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12677,19 +12514,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13031,7 +12865,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13053,7 +12886,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13239,15 +13071,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13354,7 +13181,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13380,19 +13206,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13447,12 +13270,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13465,14 +13286,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13744,7 +13562,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13752,19 +13569,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13785,7 +13599,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13796,19 +13609,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13826,7 +13636,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13899,7 +13708,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13915,15 +13723,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14147,7 +13950,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14160,7 +13962,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14216,7 +14017,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14231,9 +14031,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14334,8 +14131,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14355,8 +14151,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14426,7 +14221,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14461,7 +14256,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14474,7 +14268,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14597,7 +14391,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14607,7 +14401,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14617,8 +14410,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14693,7 +14484,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14708,7 +14499,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14763,7 +14553,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14822,8 +14612,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14842,11 +14632,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14910,7 +14700,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14952,7 +14741,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15080,8 +14869,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15125,13 +14913,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15154,10 +14940,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15206,8 +14997,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15229,7 +15020,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15274,7 +15065,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15316,7 +15106,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15417,7 +15207,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15548,8 +15338,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15565,7 +15354,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15604,7 +15393,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15614,7 +15403,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15645,7 +15434,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15675,7 +15464,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15720,7 +15509,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15741,7 +15530,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15749,7 +15538,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15761,7 +15550,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15813,7 +15602,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15821,7 +15610,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15881,7 +15670,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15935,7 +15724,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15988,13 +15777,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16233,7 +16020,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16292,8 +16078,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16376,7 +16161,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16602,7 +16386,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16654,8 +16437,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16835,7 +16617,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16875,7 +16657,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16895,12 +16677,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16925,7 +16705,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16941,7 +16721,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16988,11 +16768,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17346,11 +17126,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ro/LC_MESSAGES/djangojs.mo b/conf/locale/ro/LC_MESSAGES/djangojs.mo index 43229dfafb..8d0d210995 100644 Binary files a/conf/locale/ro/LC_MESSAGES/djangojs.mo and b/conf/locale/ro/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ro/LC_MESSAGES/djangojs.po b/conf/locale/ro/LC_MESSAGES/djangojs.po index 05acad4293..06284691ee 100644 --- a/conf/locale/ro/LC_MESSAGES/djangojs.po +++ b/conf/locale/ro/LC_MESSAGES/djangojs.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -88,8 +87,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -97,17 +94,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -202,7 +196,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -210,7 +203,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -231,7 +223,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -250,7 +241,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -314,11 +304,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -326,7 +314,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -337,21 +324,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1222,7 +1206,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1236,7 +1219,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1573,18 +1555,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1702,7 +1680,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1752,7 +1729,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1762,13 +1738,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1798,8 +1770,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2112,12 +2082,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2159,7 +2127,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2168,32 +2135,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2294,7 +2255,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2307,7 +2267,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2495,7 +2454,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2508,10 +2466,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2522,12 +2476,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2781,7 +2729,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2875,7 +2822,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2945,6 +2892,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2966,7 +2917,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2974,7 +2925,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3152,6 +3103,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3198,18 +3157,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3218,7 +3165,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3258,7 +3204,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3269,7 +3215,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3368,8 +3313,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3578,7 +3523,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3636,8 +3580,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3679,19 +3653,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3700,11 +3661,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3779,8 +3735,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3885,7 +3840,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3924,7 +3878,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3952,7 +3905,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4067,14 +4019,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4185,7 +4132,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4353,7 +4299,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4411,6 +4356,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4582,6 +4531,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4860,7 +4817,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4928,6 +4884,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4938,10 +4908,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4967,12 +4945,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5072,7 +5048,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5143,10 +5118,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5279,7 +5250,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5358,7 +5328,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5412,7 +5381,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5532,15 +5500,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5550,11 +5512,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5570,7 +5529,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5595,8 +5553,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5623,8 +5579,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ru/LC_MESSAGES/django.mo b/conf/locale/ru/LC_MESSAGES/django.mo index b2c8f3d5c1..f0f2966d28 100644 Binary files a/conf/locale/ru/LC_MESSAGES/django.mo and b/conf/locale/ru/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ru/LC_MESSAGES/django.po b/conf/locale/ru/LC_MESSAGES/django.po index a254c91dec..e5164fc169 100644 --- a/conf/locale/ru/LC_MESSAGES/django.po +++ b/conf/locale/ru/LC_MESSAGES/django.po @@ -27,6 +27,7 @@ # Sergej Ivakin, 2014 # Tatiane Berseneva, 2013 # Danil Moskovoy , 2013 +# Toskira , 2015 # Viktoria Surovtseva , 2013 # Viktoria Surovtseva , 2013 # webslavic , 2014 @@ -153,7 +154,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-25 11:41+0000\n" "Last-Translator: Weyedide \n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" @@ -184,12 +185,11 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -202,7 +202,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -228,10 +227,8 @@ msgstr "Завершено" #: lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Имя" @@ -323,6 +320,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Имя пользователя должно содержать только буквы от A до Z и цифры от 0 до 9, " +"без пробелов." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Вы должны принять условия предоставления услуг." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -343,7 +418,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -400,6 +475,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -512,104 +594,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "Учётная запись с электронным адресом '{email}' уже существует." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Ошибка (401 {field}). Напишите нам по электронной почте." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Вы должны принять условия предоставления услуг." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Требуется корректный адрес электронной почты." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Имя пользователя должно содержать только буквы от A до Z и цифры от 0 до 9, " -"без пробелов." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Не удалось отправить сообщение для активации учётной записи." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -675,7 +659,7 @@ msgstr "" msgid "Name required" msgstr "Имя - обязательное поле" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Неверный идентификатор" @@ -1110,7 +1094,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1123,7 +1107,7 @@ msgstr "обработка" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: неопределённый тег {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1162,7 +1146,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1170,7 +1154,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "Ошибка при формировании предварительного просмотра" @@ -1209,13 +1193,11 @@ msgstr "Не разрешается исполнение небезопасно #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1247,17 +1229,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1300,7 +1280,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1458,7 +1437,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1490,7 +1468,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1542,7 +1519,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1571,7 +1547,6 @@ msgstr "Верные или просроченные" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1714,8 +1689,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2231,12 +2204,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2355,9 +2322,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2594,7 +2558,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "О нас" @@ -2670,8 +2633,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3253,7 +3214,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3505,7 +3466,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3648,7 +3608,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3696,7 +3655,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3734,7 +3692,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -4039,15 +3996,12 @@ msgstr "Поиск" msgid "Copyright" msgstr "Авторское право" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4156,6 +4110,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "ОШИБКА: не найдено источников видео, доступных для воспроизведения!" @@ -4204,7 +4174,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4264,7 +4233,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Необходимо указать имя пользователя" @@ -4333,7 +4302,7 @@ msgstr "Учебные курсы загружены в хранилище мо msgid "username" msgstr "username" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4396,9 +4365,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4432,7 +4400,7 @@ msgstr "" msgid "Deleted" msgstr "Удалено" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "course_id" @@ -4466,22 +4434,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4490,7 +4446,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4593,12 +4548,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4706,18 +4658,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4748,7 +4696,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4861,7 +4808,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4928,8 +4874,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4983,7 +4929,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -5041,7 +4986,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5290,7 +5234,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5340,7 +5283,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5430,8 +5373,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5526,7 +5468,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5555,12 +5496,10 @@ msgstr "Валюта" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Курс" @@ -5654,7 +5593,7 @@ msgstr "" msgid "Course added to cart." msgstr "Курс добавлен в корзину." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5691,7 +5630,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5821,7 +5759,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6166,7 +6103,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6272,7 +6208,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Сброс пароля выполнен" @@ -6454,7 +6389,6 @@ msgstr "Удалить статью" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Удалить" @@ -6508,10 +6442,7 @@ msgstr "Предварительный просмотр" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/help_modal.html lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html @@ -6530,8 +6461,6 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" @@ -6569,7 +6498,7 @@ msgstr "" msgid "Change" msgstr "Изменение" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6581,11 +6510,11 @@ msgstr "Переключиться на выбранную версию" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Переключиться на эту версию" @@ -6607,7 +6536,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6836,30 +6765,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Пароль" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6928,8 +6847,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6941,12 +6858,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6956,11 +6871,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7072,7 +6985,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7102,7 +7014,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7320,8 +7236,7 @@ msgstr "Страница не найдена" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7333,13 +7248,8 @@ msgstr "" msgid "close" msgstr "закрыть" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7359,7 +7269,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Настройки" @@ -7368,13 +7278,11 @@ msgstr "Настройки" msgid "Error:" msgstr "Ошибка:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Организация:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7389,10 +7297,8 @@ msgstr "Курсы" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7402,7 +7308,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "образец: username@domain.com" @@ -7434,14 +7340,13 @@ msgstr "образец: Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "образец: JaneDoe" @@ -7455,7 +7360,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Подробности" @@ -7482,13 +7387,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Политика конфиденциальности" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html msgid "Help" msgstr "Помощь" @@ -7509,7 +7412,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7592,7 +7494,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7636,7 +7538,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7644,7 +7546,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7678,7 +7580,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7729,15 +7631,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7801,7 +7694,7 @@ msgstr "Студенты, получившие отказ:" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7838,7 +7731,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7881,13 +7774,11 @@ msgstr "Новости" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7909,31 +7800,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7950,7 +7841,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Вакансии" @@ -7966,7 +7856,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7993,7 +7882,7 @@ msgstr "" msgid "Email is incorrect." msgstr "Адрес электронной почты введён неверно." -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "Помощь {platform_name}" @@ -8054,8 +7943,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8195,7 +8082,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Войти с помощью OpenID" @@ -8378,7 +8265,7 @@ msgstr "Необработанные данные:" msgid "Accepted" msgstr "Принято" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Ошибка" @@ -8399,17 +8286,15 @@ msgstr "Подтвердить" msgid "Reject" msgstr "Отклонить" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8429,13 +8314,11 @@ msgstr "" msgid "Shopping Cart" msgstr "Корзина" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Регистрация" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8453,7 +8336,7 @@ msgstr "" msgid "Schools" msgstr "Университеты" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8518,7 +8401,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8529,7 +8411,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8650,11 +8531,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8705,12 +8586,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8719,15 +8600,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8828,7 +8709,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8884,7 +8765,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8962,6 +8842,18 @@ msgstr "Удалить курс с сайта" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8976,6 +8868,11 @@ msgstr "Дата" msgid "Git Action" msgstr "Операция Git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9113,7 +9010,7 @@ msgstr "" msgid "Download video" msgstr "Скачать видео" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9129,7 +9026,6 @@ msgstr "Ваши слова:" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9472,8 +9368,6 @@ msgstr "{chapter}, текущая глава" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9531,12 +9425,10 @@ msgstr "Обзор" msgid "Share with friends and family!" msgstr "Поделиться с семьёй и друзьями!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9590,6 +9482,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9666,7 +9569,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9702,11 +9605,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9714,7 +9617,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9768,7 +9670,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9799,7 +9700,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9813,7 +9713,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "Коррекция оценок для конкретных курсов" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9848,7 +9747,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Раздел:" @@ -9893,7 +9791,6 @@ msgstr "День" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Студенты" @@ -9984,7 +9881,6 @@ msgstr "Продолжительность (сек)" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "неизвестно" @@ -10071,7 +9967,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10139,7 +10045,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10148,21 +10053,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10181,11 +10071,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10194,11 +10098,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10219,7 +10118,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10229,7 +10127,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10289,7 +10186,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10343,44 +10239,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10396,7 +10281,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10438,7 +10322,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10636,7 +10519,7 @@ msgstr "Редактирование сообщения" msgid "Edit post title" msgstr "" -#: wiki/forms.py wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Title" msgstr "Заголовок" @@ -10648,7 +10531,6 @@ msgstr "Обновить сообщение" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Добавить комментарий" @@ -10669,7 +10551,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10834,7 +10715,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10853,7 +10733,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10970,7 +10849,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11701,8 +11579,6 @@ msgstr "" msgid "Skip" msgstr "Пропустить" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11762,12 +11638,10 @@ msgstr "" msgid "Has the course started?" msgstr "Курс уже начался?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Да" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Нет" @@ -11905,7 +11779,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12053,7 +11926,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12119,7 +11991,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12149,24 +12020,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12234,7 +12097,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12348,7 +12210,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12361,7 +12222,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12375,12 +12235,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "Электронные адреса/Имена пользователей" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12402,22 +12260,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12601,7 +12453,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12636,12 +12487,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12654,12 +12503,10 @@ msgstr "Отправить:" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12742,7 +12589,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12781,19 +12627,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13135,7 +12978,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13157,7 +12999,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13343,15 +13184,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13458,7 +13294,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13484,19 +13319,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13551,12 +13383,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13569,14 +13399,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13852,7 +13679,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13860,19 +13686,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13893,7 +13716,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13904,19 +13726,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13934,7 +13753,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -14007,7 +13825,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14023,15 +13840,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14255,7 +14067,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14268,7 +14079,6 @@ msgstr "Освещение должно быть достаточно хорош msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "Фото в Вашем документе должно совпадать с фото Вашего лица" @@ -14324,7 +14134,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14339,9 +14148,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14442,8 +14248,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14463,8 +14268,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14534,7 +14338,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14569,7 +14373,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14582,7 +14385,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14705,7 +14508,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14715,7 +14518,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14725,8 +14527,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14801,7 +14601,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14816,7 +14616,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14871,7 +14670,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14930,8 +14729,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14950,11 +14749,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15018,7 +14817,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15060,7 +14858,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15188,8 +14986,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15233,13 +15030,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15262,10 +15057,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15314,8 +15114,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15337,7 +15137,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15382,7 +15182,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15424,7 +15223,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15525,7 +15324,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15656,8 +15455,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15673,7 +15471,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15712,7 +15510,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15722,7 +15520,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15753,7 +15551,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15783,7 +15581,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15828,7 +15626,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15849,7 +15647,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15857,7 +15655,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15869,7 +15667,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15921,7 +15719,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15929,7 +15727,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15989,7 +15787,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16043,7 +15841,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16096,13 +15894,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16341,7 +16137,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16400,8 +16195,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16484,7 +16278,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16710,7 +16503,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16762,8 +16554,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16943,7 +16734,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16983,7 +16774,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17003,12 +16794,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17033,7 +16822,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17049,7 +16838,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17097,11 +16886,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17463,11 +17252,11 @@ msgstr "версии вложений" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.mo b/conf/locale/ru/LC_MESSAGES/djangojs.mo index db1f2d4d1a..419cbfe713 100644 Binary files a/conf/locale/ru/LC_MESSAGES/djangojs.mo and b/conf/locale/ru/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.po b/conf/locale/ru/LC_MESSAGES/djangojs.po index 11a827ccdb..b4234bf1a1 100644 --- a/conf/locale/ru/LC_MESSAGES/djangojs.po +++ b/conf/locale/ru/LC_MESSAGES/djangojs.po @@ -82,9 +82,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-05 09:52+0000\n" -"Last-Translator: Weyedide \n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" +"Last-Translator: Sarina Canelake \n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,7 +96,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -136,8 +135,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -145,17 +142,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -250,7 +244,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -258,7 +251,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -279,7 +271,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -298,7 +289,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -362,11 +352,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -374,7 +362,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -385,21 +372,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1270,7 +1254,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Заменить все" @@ -1284,7 +1267,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1623,18 +1605,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1752,7 +1730,6 @@ msgstr "HD включено" msgid "HD off" msgstr "HD выключено" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1802,7 +1779,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Скрыть Обсуждения" @@ -1812,13 +1788,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1848,8 +1820,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2162,12 +2132,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2209,7 +2177,6 @@ msgstr "Дата публикации" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Мои заметки" @@ -2218,32 +2185,26 @@ msgstr "Мои заметки" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2344,7 +2305,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2357,7 +2317,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2547,7 +2506,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2560,10 +2518,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2574,12 +2528,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2833,7 +2781,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2927,7 +2874,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2997,6 +2944,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -3018,7 +2969,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3026,7 +2977,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3204,6 +3155,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3250,18 +3209,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3270,7 +3217,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3310,7 +3256,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3321,7 +3267,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3420,8 +3365,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3630,7 +3575,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3688,8 +3632,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3731,19 +3705,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3752,11 +3713,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3831,8 +3787,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3937,7 +3892,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3976,7 +3930,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -4004,7 +3957,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4119,14 +4071,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4237,7 +4184,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4405,7 +4351,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4463,6 +4408,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4634,6 +4583,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4912,7 +4869,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "Список загруженных файлов и материалов курса" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4980,6 +4936,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4990,10 +4960,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -5019,12 +4997,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5125,7 +5101,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5196,10 +5171,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5332,7 +5303,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5411,7 +5381,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "Очистить дату/время выпуска" @@ -5465,7 +5434,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5585,15 +5553,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5603,11 +5565,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5623,7 +5582,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5648,8 +5606,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5676,8 +5632,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/si/LC_MESSAGES/django.mo b/conf/locale/si/LC_MESSAGES/django.mo index 47deb2005a..a281b5ff69 100644 Binary files a/conf/locale/si/LC_MESSAGES/django.mo and b/conf/locale/si/LC_MESSAGES/django.mo differ diff --git a/conf/locale/si/LC_MESSAGES/django.po b/conf/locale/si/LC_MESSAGES/django.po index 03a9c9919d..1881bfbe17 100644 --- a/conf/locale/si/LC_MESSAGES/django.po +++ b/conf/locale/si/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: Ned Batchelder \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/edx-platform/language/si/)\n" @@ -72,7 +72,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -80,7 +80,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -92,7 +91,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -119,15 +117,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -221,6 +215,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -241,7 +311,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -298,6 +368,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -408,102 +485,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -564,7 +545,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -998,7 +979,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1011,7 +992,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1050,7 +1031,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1058,7 +1039,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1097,13 +1078,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1135,17 +1114,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1188,7 +1165,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1344,7 +1320,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1376,7 +1351,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1428,7 +1402,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1457,7 +1430,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1598,8 +1570,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2116,12 +2086,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2240,9 +2204,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2480,7 +2441,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2556,8 +2516,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3136,7 +3094,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3388,7 +3346,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3531,7 +3488,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3579,7 +3535,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3617,7 +3572,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3914,19 +3868,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4034,6 +3984,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4082,7 +4048,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4142,7 +4107,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4207,12 +4172,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4275,9 +4239,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4311,7 +4274,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4345,22 +4308,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4369,7 +4320,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4470,12 +4420,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4589,18 +4536,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4631,7 +4574,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4743,7 +4685,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4810,8 +4751,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4865,7 +4806,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4924,7 +4864,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5173,7 +5112,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5223,7 +5161,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5313,8 +5251,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5410,7 +5347,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5440,14 +5376,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5540,7 +5473,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5577,7 +5510,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5707,7 +5639,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6054,7 +5985,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6160,7 +6090,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6342,7 +6271,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6395,12 +6323,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6420,10 +6345,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6460,7 +6382,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6472,11 +6394,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6498,7 +6420,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6726,12 +6648,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6741,21 +6660,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6833,8 +6744,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6846,12 +6755,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6861,11 +6768,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6977,7 +6882,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7007,7 +6911,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7223,8 +7131,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7236,13 +7143,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7262,7 +7164,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7271,13 +7173,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7292,10 +7192,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7305,7 +7203,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7337,14 +7235,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7358,7 +7255,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7385,13 +7282,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7412,7 +7307,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7495,7 +7389,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7539,7 +7433,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7547,7 +7441,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7581,7 +7475,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7632,15 +7526,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7704,7 +7589,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7741,7 +7626,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7784,13 +7669,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7812,31 +7695,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7853,7 +7736,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7869,7 +7751,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7896,7 +7777,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7956,8 +7837,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8094,7 +7973,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8275,7 +8154,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8296,17 +8175,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8326,13 +8203,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8350,7 +8225,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8415,7 +8290,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8426,7 +8300,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8547,11 +8420,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8602,12 +8475,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8616,15 +8489,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8725,7 +8598,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8781,7 +8654,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8859,6 +8731,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8873,6 +8757,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9010,7 +8899,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9026,7 +8915,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9365,8 +9253,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9424,12 +9310,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9483,6 +9367,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9559,7 +9454,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9595,11 +9490,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9607,7 +9502,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9661,7 +9555,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9692,7 +9585,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9706,7 +9598,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9741,7 +9632,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9786,7 +9676,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9877,7 +9766,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9964,7 +9852,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10030,7 +9928,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10039,21 +9936,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10072,11 +9954,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10085,11 +9981,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10110,7 +10001,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10120,7 +10010,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10179,7 +10068,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10233,44 +10121,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10286,7 +10163,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10328,7 +10204,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10526,9 +10401,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10540,7 +10413,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10561,7 +10433,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10726,7 +10597,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10745,7 +10615,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10858,7 +10727,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11582,8 +11450,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11643,12 +11509,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11786,7 +11650,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11934,7 +11797,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11999,7 +11861,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12029,24 +11890,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12114,7 +11967,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12228,7 +12080,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12241,7 +12092,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12253,12 +12103,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12280,22 +12128,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12477,7 +12319,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12512,12 +12353,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12530,12 +12369,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12616,7 +12453,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12655,19 +12491,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13009,7 +12842,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13031,7 +12863,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13216,15 +13047,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13331,7 +13157,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13357,19 +13182,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13424,12 +13246,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13442,14 +13262,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13721,7 +13538,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13729,19 +13545,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13762,7 +13575,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13773,19 +13585,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13803,7 +13612,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13876,7 +13684,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13892,15 +13699,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14124,7 +13926,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14137,7 +13938,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14193,7 +13993,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14208,9 +14007,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14311,8 +14107,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14332,8 +14127,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14403,7 +14197,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14438,7 +14232,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14451,7 +14244,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14574,7 +14367,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14584,7 +14377,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14594,8 +14386,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14670,7 +14460,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14685,7 +14475,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14740,7 +14529,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14799,8 +14588,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14819,11 +14608,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14887,7 +14676,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14929,7 +14717,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15057,8 +14845,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15102,13 +14889,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15131,10 +14916,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15183,8 +14973,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15206,7 +14996,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15251,7 +15041,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15293,7 +15082,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15394,7 +15183,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15525,8 +15314,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15542,7 +15330,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15581,7 +15369,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15591,7 +15379,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15622,7 +15410,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15652,7 +15440,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15697,7 +15485,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15718,7 +15506,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15726,7 +15514,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15738,7 +15526,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15790,7 +15578,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15798,7 +15586,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15858,7 +15646,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15912,7 +15700,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15965,13 +15753,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16210,7 +15996,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16269,8 +16054,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16353,7 +16137,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16579,7 +16362,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16631,8 +16413,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16812,7 +16593,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16852,7 +16633,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16872,12 +16653,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16902,7 +16681,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16918,7 +16697,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16965,11 +16744,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17323,11 +17102,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/si/LC_MESSAGES/djangojs.mo b/conf/locale/si/LC_MESSAGES/djangojs.mo index 06b6c4c2aa..b752fbcfe1 100644 Binary files a/conf/locale/si/LC_MESSAGES/djangojs.mo and b/conf/locale/si/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/si/LC_MESSAGES/djangojs.po b/conf/locale/si/LC_MESSAGES/djangojs.po index bf8864a294..93d93edd2f 100644 --- a/conf/locale/si/LC_MESSAGES/djangojs.po +++ b/conf/locale/si/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/edx-platform/language/si/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sk/LC_MESSAGES/django.mo b/conf/locale/sk/LC_MESSAGES/django.mo index 69d12c69a7..245c8cee8e 100644 Binary files a/conf/locale/sk/LC_MESSAGES/django.mo and b/conf/locale/sk/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sk/LC_MESSAGES/django.po b/conf/locale/sk/LC_MESSAGES/django.po index 950a1b8fd1..b480d34361 100644 --- a/conf/locale/sk/LC_MESSAGES/django.po +++ b/conf/locale/sk/LC_MESSAGES/django.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Vladimír Záhradník \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/edx-platform/language/sk/)\n" @@ -77,7 +77,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -85,7 +85,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -97,7 +96,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -124,15 +122,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -226,6 +220,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -246,7 +316,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -303,6 +373,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -413,102 +490,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -571,7 +552,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1006,7 +987,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1019,7 +1000,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1058,7 +1039,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1066,7 +1047,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1105,13 +1086,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1143,17 +1122,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1196,7 +1173,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1352,7 +1328,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1384,7 +1359,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1436,7 +1410,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1465,7 +1438,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1606,8 +1578,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2124,12 +2094,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2248,9 +2212,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2488,7 +2449,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2564,8 +2524,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3146,7 +3104,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3395,7 +3353,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3538,7 +3495,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3586,7 +3542,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3624,7 +3579,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3921,19 +3875,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4042,6 +3992,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4090,7 +4056,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4150,7 +4115,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4215,12 +4180,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4283,9 +4247,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4319,7 +4282,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4353,22 +4316,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4377,7 +4328,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4478,12 +4428,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4597,18 +4544,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4639,7 +4582,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4753,7 +4695,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4820,8 +4761,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4875,7 +4816,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4934,7 +4874,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5183,7 +5122,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5233,7 +5171,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5323,8 +5261,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5420,7 +5357,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5450,14 +5386,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5550,7 +5483,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5587,7 +5520,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5717,7 +5649,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6064,7 +5995,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6170,7 +6100,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6352,7 +6281,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6405,12 +6333,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6430,10 +6355,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6470,7 +6392,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6482,11 +6404,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6508,7 +6430,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6736,12 +6658,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6751,21 +6670,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6843,8 +6754,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6856,12 +6765,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6871,11 +6778,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6987,7 +6892,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7017,7 +6921,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7233,8 +7141,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7246,13 +7153,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7272,7 +7174,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7281,13 +7183,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7302,10 +7202,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7315,7 +7213,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7347,14 +7245,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7368,7 +7265,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7395,13 +7292,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7422,7 +7317,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7505,7 +7399,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7549,7 +7443,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7557,7 +7451,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7591,7 +7485,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7642,15 +7536,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7714,7 +7599,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7751,7 +7636,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7794,13 +7679,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7822,31 +7705,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7863,7 +7746,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7879,7 +7761,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7906,7 +7787,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7966,8 +7847,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8105,7 +7984,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8286,7 +8165,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8307,17 +8186,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8337,13 +8214,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8361,7 +8236,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8426,7 +8301,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8437,7 +8311,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8558,11 +8431,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8613,12 +8486,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8627,15 +8500,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8736,7 +8609,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8792,7 +8665,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8870,6 +8742,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8884,6 +8768,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9021,7 +8910,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9037,7 +8926,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9378,8 +9266,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9437,12 +9323,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9496,6 +9380,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9572,7 +9467,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9608,11 +9503,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9620,7 +9515,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9674,7 +9568,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9705,7 +9598,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9719,7 +9611,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9754,7 +9645,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9799,7 +9689,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9890,7 +9779,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9977,7 +9865,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10043,7 +9941,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10052,21 +9949,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10085,11 +9967,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10098,11 +9994,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10123,7 +10014,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10133,7 +10023,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10193,7 +10082,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10247,44 +10135,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10300,7 +10177,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10342,7 +10218,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10540,9 +10415,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10554,7 +10427,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10575,7 +10447,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10740,7 +10611,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10759,7 +10629,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10874,7 +10743,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11598,8 +11466,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11659,12 +11525,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11802,7 +11666,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11950,7 +11813,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12015,7 +11877,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12045,24 +11906,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12130,7 +11983,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12244,7 +12096,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12257,7 +12108,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12269,12 +12119,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12296,22 +12144,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12493,7 +12335,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12528,12 +12369,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12546,12 +12385,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12632,7 +12469,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12671,19 +12507,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13025,7 +12858,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13047,7 +12879,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13233,15 +13064,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13348,7 +13174,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13374,19 +13199,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13441,12 +13263,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13459,14 +13279,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13738,7 +13555,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13746,19 +13562,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13779,7 +13592,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13790,19 +13602,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13820,7 +13629,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13893,7 +13701,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13909,15 +13716,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14141,7 +13943,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14154,7 +13955,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14210,7 +14010,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14225,9 +14024,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14328,8 +14124,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14349,8 +14144,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14420,7 +14214,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14455,7 +14249,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14468,7 +14261,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14591,7 +14384,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14601,7 +14394,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14611,8 +14403,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14687,7 +14477,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14702,7 +14492,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14757,7 +14546,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14816,8 +14605,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14836,11 +14625,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14904,7 +14693,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14946,7 +14734,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15074,8 +14862,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15119,13 +14906,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15148,10 +14933,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15200,8 +14990,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15223,7 +15013,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15268,7 +15058,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15310,7 +15099,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15411,7 +15200,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15542,8 +15331,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15559,7 +15347,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15598,7 +15386,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15608,7 +15396,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15639,7 +15427,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15669,7 +15457,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15714,7 +15502,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15743,7 +15531,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15755,7 +15543,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15807,7 +15595,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15815,7 +15603,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15875,7 +15663,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15929,7 +15717,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15982,13 +15770,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16227,7 +16013,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16286,8 +16071,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16370,7 +16154,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16596,7 +16379,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16648,8 +16430,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16829,7 +16610,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16869,7 +16650,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16889,12 +16670,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16919,7 +16698,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16935,7 +16714,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16982,11 +16761,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17340,11 +17119,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.mo b/conf/locale/sk/LC_MESSAGES/djangojs.mo index 556272e8d0..66fdfff9a5 100644 Binary files a/conf/locale/sk/LC_MESSAGES/djangojs.mo and b/conf/locale/sk/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.po b/conf/locale/sk/LC_MESSAGES/djangojs.po index 7105973d07..a3ac439b78 100644 --- a/conf/locale/sk/LC_MESSAGES/djangojs.po +++ b/conf/locale/sk/LC_MESSAGES/djangojs.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/edx-platform/language/sk/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -88,8 +87,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -97,17 +94,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -202,7 +196,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -210,7 +203,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -231,7 +223,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -250,7 +241,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -314,11 +304,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -326,7 +314,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -337,21 +324,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1222,7 +1206,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1236,7 +1219,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1573,18 +1555,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1702,7 +1680,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1752,7 +1729,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1762,13 +1738,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1798,8 +1770,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2112,12 +2082,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2159,7 +2127,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2168,32 +2135,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2294,7 +2255,6 @@ msgstr "Meno používateľa" msgid "Email" msgstr "Email" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Zrušiť prístup" @@ -2307,7 +2267,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2495,7 +2454,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2508,10 +2466,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2522,12 +2476,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2781,7 +2729,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2875,7 +2822,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2945,6 +2892,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2966,7 +2917,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2974,7 +2925,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3152,6 +3103,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3198,18 +3157,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3218,7 +3165,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3258,7 +3204,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3269,7 +3215,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3368,8 +3313,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3578,7 +3523,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3636,8 +3580,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3679,19 +3653,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3700,11 +3661,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3779,8 +3735,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3885,7 +3840,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3924,7 +3878,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3952,7 +3905,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4067,14 +4019,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4185,7 +4132,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4353,7 +4299,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4411,6 +4356,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4582,6 +4531,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4860,7 +4817,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4928,6 +4884,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4938,10 +4908,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4967,12 +4945,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5072,7 +5048,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5143,10 +5118,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5279,7 +5250,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5358,7 +5328,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5412,7 +5381,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5532,15 +5500,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5550,11 +5512,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5570,7 +5529,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5595,8 +5553,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5623,8 +5579,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sl/LC_MESSAGES/django.mo b/conf/locale/sl/LC_MESSAGES/django.mo index 6e5c979bb4..8ce6f99878 100644 Binary files a/conf/locale/sl/LC_MESSAGES/django.mo and b/conf/locale/sl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sl/LC_MESSAGES/django.po b/conf/locale/sl/LC_MESSAGES/django.po index a9f17baf16..6945695fa7 100644 --- a/conf/locale/sl/LC_MESSAGES/django.po +++ b/conf/locale/sl/LC_MESSAGES/django.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Rok Kepa \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/edx-platform/language/sl/)\n" @@ -77,7 +77,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -85,7 +85,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -97,7 +96,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -124,15 +122,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -226,6 +220,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -246,7 +316,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -303,6 +373,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -413,102 +490,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -573,7 +554,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1009,7 +990,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1022,7 +1003,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1061,7 +1042,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1069,7 +1050,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1108,13 +1089,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1146,17 +1125,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1199,7 +1176,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1355,7 +1331,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1387,7 +1362,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1439,7 +1413,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1468,7 +1441,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1609,8 +1581,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2127,12 +2097,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2251,9 +2215,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2491,7 +2452,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2567,8 +2527,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3151,7 +3109,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3403,7 +3361,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3546,7 +3503,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3594,7 +3550,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3632,7 +3587,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3929,19 +3883,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4051,6 +4001,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4099,7 +4065,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4159,7 +4124,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4224,12 +4189,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4292,9 +4256,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4328,7 +4291,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4362,22 +4325,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4386,7 +4337,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4487,12 +4437,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4606,18 +4553,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4648,7 +4591,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4764,7 +4706,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4831,8 +4772,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4886,7 +4827,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4945,7 +4885,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5194,7 +5133,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5244,7 +5182,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5334,8 +5272,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5431,7 +5368,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5461,14 +5397,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5561,7 +5494,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5598,7 +5531,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5728,7 +5660,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6075,7 +6006,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6181,7 +6111,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6363,7 +6292,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6416,12 +6344,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6441,10 +6366,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6481,7 +6403,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6493,11 +6415,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6519,7 +6441,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6747,12 +6669,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6762,21 +6681,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6854,8 +6765,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6867,12 +6776,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6882,11 +6789,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6998,7 +6903,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7028,7 +6932,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7244,8 +7152,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7257,13 +7164,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7283,7 +7185,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7292,13 +7194,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7313,10 +7213,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7326,7 +7224,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7358,14 +7256,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7379,7 +7276,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7406,13 +7303,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7433,7 +7328,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7516,7 +7410,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7560,7 +7454,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7568,7 +7462,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7602,7 +7496,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7653,15 +7547,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7725,7 +7610,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7762,7 +7647,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7805,13 +7690,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7833,31 +7716,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7874,7 +7757,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7890,7 +7772,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7917,7 +7798,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7977,8 +7858,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8117,7 +7996,7 @@ msgstr[3] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8298,7 +8177,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8319,17 +8198,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8349,13 +8226,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8373,7 +8248,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8438,7 +8313,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8449,7 +8323,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8570,11 +8443,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8625,12 +8498,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8639,15 +8512,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8748,7 +8621,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8804,7 +8677,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8882,6 +8754,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8896,6 +8780,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9033,7 +8922,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9049,7 +8938,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9392,8 +9280,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9451,12 +9337,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9510,6 +9394,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9586,7 +9481,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9622,11 +9517,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9634,7 +9529,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9688,7 +9582,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9719,7 +9612,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9733,7 +9625,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9768,7 +9659,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9813,7 +9703,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9904,7 +9793,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9991,7 +9879,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10057,7 +9955,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10066,21 +9963,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10099,11 +9981,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10112,11 +10008,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10137,7 +10028,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10147,7 +10037,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10208,7 +10097,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10262,44 +10150,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10315,7 +10192,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10357,7 +10233,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10555,9 +10430,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10569,7 +10442,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10590,7 +10462,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10755,7 +10626,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10774,7 +10644,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10891,7 +10760,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11615,8 +11483,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11676,12 +11542,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11819,7 +11683,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11967,7 +11830,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12032,7 +11894,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12062,24 +11923,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12147,7 +12000,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12261,7 +12113,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12274,7 +12125,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12286,12 +12136,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12313,22 +12161,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12510,7 +12352,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12545,12 +12386,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12563,12 +12402,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12649,7 +12486,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12688,19 +12524,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13042,7 +12875,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13064,7 +12896,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13251,15 +13082,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13366,7 +13192,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13392,19 +13217,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13459,12 +13281,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13477,14 +13297,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13756,7 +13573,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13764,19 +13580,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13797,7 +13610,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13808,19 +13620,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13838,7 +13647,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13911,7 +13719,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13927,15 +13734,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14159,7 +13961,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14172,7 +13973,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14228,7 +14028,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14243,9 +14042,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14346,8 +14142,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14367,8 +14162,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14438,7 +14232,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14473,7 +14267,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14486,7 +14279,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14609,7 +14402,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14619,7 +14412,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14629,8 +14421,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14705,7 +14495,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14720,7 +14510,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14775,7 +14564,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14834,8 +14623,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14854,11 +14643,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14922,7 +14711,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14964,7 +14752,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15092,8 +14880,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15137,13 +14924,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15166,10 +14951,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15218,8 +15008,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15241,7 +15031,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15286,7 +15076,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15328,7 +15117,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15429,7 +15218,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15560,8 +15349,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15577,7 +15365,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15616,7 +15404,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15626,7 +15414,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15657,7 +15445,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15687,7 +15475,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15732,7 +15520,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15753,7 +15541,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15761,7 +15549,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15773,7 +15561,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15825,7 +15613,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15833,7 +15621,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15893,7 +15681,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15947,7 +15735,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16000,13 +15788,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16245,7 +16031,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16304,8 +16089,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16388,7 +16172,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16614,7 +16397,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16666,8 +16448,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16847,7 +16628,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16887,7 +16668,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16907,12 +16688,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16937,7 +16716,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16953,7 +16732,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17000,11 +16779,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17358,11 +17137,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.mo b/conf/locale/sl/LC_MESSAGES/djangojs.mo index 0503cda873..cb410c281c 100644 Binary files a/conf/locale/sl/LC_MESSAGES/djangojs.mo and b/conf/locale/sl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.po b/conf/locale/sl/LC_MESSAGES/djangojs.po index 1fb9f064d6..8397c76e19 100644 --- a/conf/locale/sl/LC_MESSAGES/djangojs.po +++ b/conf/locale/sl/LC_MESSAGES/djangojs.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/edx-platform/language/sl/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -75,8 +74,6 @@ msgstr "Ta povezava se bo odprla v novem oknu/zavihku" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -84,17 +81,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -191,7 +185,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -199,7 +192,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -220,7 +212,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -239,7 +230,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -303,11 +293,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -315,7 +303,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -326,21 +313,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1211,7 +1195,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1225,7 +1208,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1562,18 +1544,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1691,7 +1669,6 @@ msgstr "HD vključen" msgid "HD off" msgstr "HD izključen" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Video pozicija" @@ -1744,7 +1721,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1754,13 +1730,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1790,8 +1762,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2117,12 +2087,10 @@ msgstr[3] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2165,7 +2133,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2174,32 +2141,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2300,7 +2261,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2313,7 +2273,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2501,7 +2460,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2514,10 +2472,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2528,12 +2482,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2787,7 +2735,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2881,7 +2828,7 @@ msgstr "vnesite opis slike" msgid "enter link description here" msgstr "vnesite opis povezave" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "vnesite kodo" @@ -2951,6 +2898,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2972,7 +2923,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2980,7 +2931,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3163,6 +3114,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3209,18 +3168,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3229,7 +3176,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3272,7 +3218,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3283,7 +3229,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3382,8 +3327,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3592,7 +3537,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3650,8 +3594,39 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3694,20 +3669,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3716,11 +3677,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3795,8 +3751,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3901,7 +3856,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3940,7 +3894,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3968,7 +3921,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4083,14 +4035,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4202,7 +4149,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4370,7 +4316,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4428,6 +4373,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4599,6 +4548,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4877,7 +4834,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4945,6 +4901,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4955,10 +4925,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4984,12 +4962,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5089,7 +5065,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5160,10 +5135,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5296,7 +5267,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5375,7 +5345,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5429,7 +5398,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5549,15 +5517,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5567,11 +5529,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5587,7 +5546,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5612,8 +5570,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5640,8 +5596,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sq/LC_MESSAGES/django.mo b/conf/locale/sq/LC_MESSAGES/django.mo index e4ba40382a..124b6763a4 100644 Binary files a/conf/locale/sq/LC_MESSAGES/django.mo and b/conf/locale/sq/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sq/LC_MESSAGES/django.po b/conf/locale/sq/LC_MESSAGES/django.po index c0ce795a0f..58f22a416f 100644 --- a/conf/locale/sq/LC_MESSAGES/django.po +++ b/conf/locale/sq/LC_MESSAGES/django.po @@ -4,7 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# Faton Nuha , 2014 +# Faton Nuha , 2014-2015 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2015 EdX @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-14 12:50+0000\n" "Last-Translator: Arta Dilo \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/edx-platform/language/sq/)\n" @@ -73,7 +73,7 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Diskutim" @@ -89,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Emri" @@ -216,6 +211,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Fjalëkalimi valid është i detyrushëm" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "Emri i përdoruesit përbëhet nga A-ZH dhe nga 0-9, pa hapësirë." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Ju duhet të i pranoni rregullat e përdorimit." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Viti i lindjes është i detyruar" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Përshkrimi i synimeve tuaja është i obligueshëm" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Shteti është i detyrushëm" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Fjalëkalimi:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -236,7 +307,7 @@ msgstr "Femër" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Tjetër" @@ -293,6 +364,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -403,102 +481,6 @@ msgstr "Një llogari me emër publik '{username}' tashmë ekziston." msgid "An account with the Email '{email}' already exists." msgstr "Një llogari me email adrsën '{email}' tashmë ekziston." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Problem(401 {field}).Na kontaktoni." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Ju duhet të i pranoni rregullat e përdorimit." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Fjalëkalimi valid është i detyrushëm" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Pranimi i Kushteve të përdorimit është i detyrueshëm" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Viti i lindjes është i detyruar" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Përshkrimi i synimeve tuaja është i obligueshëm" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Shteti është i detyrushëm" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "Emri i përdoruesit nuk mund të jetë më i gjatë se {num} karaktere" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "Posta elektronike nuk mund të jetë më e gjatë se {num} karaktere" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Posta elektronike valide është e detyrueshme." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "Emri i përdoruesit përbëhet nga A-ZH dhe nga 0-9, pa hapësirë." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Fjalëkalimi:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +543,7 @@ msgstr "E pamundur të dërgohet linku aktivizues. Ju lutem provojeni përsëri. msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "ID jo valide" @@ -995,7 +977,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +990,7 @@ msgstr "procesimi" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1029,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1037,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1076,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1112,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1163,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1336,7 +1313,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1368,7 +1344,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1420,7 +1395,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1449,7 +1423,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1590,8 +1563,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2108,12 +2079,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2232,9 +2197,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2471,7 +2433,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Rreth" @@ -2547,8 +2508,6 @@ msgstr "" msgid "Text" msgstr "Tekst" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3127,7 +3086,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3378,7 +3337,6 @@ msgid "" "moocsupport@mathworks.com" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3521,7 +3479,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3569,7 +3526,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3608,7 +3564,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3905,19 +3860,15 @@ msgstr "Kërko" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #, fuzzy msgid "Username" msgstr "" @@ -4030,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4078,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4138,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4207,7 +4173,7 @@ msgstr "" msgid "username" msgstr "pseudonimi" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4270,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4306,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4340,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4364,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4465,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4579,18 +4528,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4621,7 +4566,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4733,7 +4677,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4800,8 +4743,8 @@ msgstr "ID" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4855,7 +4798,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4914,7 +4856,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5163,7 +5104,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5213,7 +5153,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5303,8 +5243,7 @@ msgstr "Donacion për {platform_name}" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5399,7 +5338,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5429,12 +5367,10 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Kursi" @@ -5528,7 +5464,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5565,7 +5501,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5695,7 +5630,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6041,7 +5975,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6147,7 +6080,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6329,7 +6261,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Fshije" @@ -6382,12 +6313,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6407,10 +6335,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6447,7 +6372,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6459,11 +6384,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6485,7 +6410,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6715,30 +6640,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Fjalëkalimi" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6807,8 +6722,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6820,23 +6733,19 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "Unë pajtohem me {platform_name} {terms_of_service}." -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "Ju duhet të pajtoheni me {platform_name} {terms_of_service}." #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Kushtet e Përdorimit" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6951,7 +6860,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6984,7 +6892,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7198,8 +7110,7 @@ msgstr "Faqja nuk u gjet" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7211,13 +7122,8 @@ msgstr "" msgid "close" msgstr "mbylle" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7237,7 +7143,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7246,13 +7152,11 @@ msgstr "" msgid "Error:" msgstr "Problem:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organizata:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7267,10 +7171,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7280,7 +7182,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "shembull: username@domain.com" @@ -7312,14 +7214,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7333,7 +7234,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Detajet" @@ -7360,13 +7261,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Politikat e privatësisë" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ndihmë" @@ -7387,7 +7286,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7470,7 +7368,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "ndrysho" @@ -7514,7 +7412,7 @@ msgstr "Link" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Reseto fjalëkalimin" @@ -7522,7 +7420,7 @@ msgstr "Reseto fjalëkalimin" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7558,7 +7456,7 @@ msgstr "" "Një mesazh është dërguar tek {email}. Ndjekeni linkun tek posta elektronike " "që të e ndryshoni fjalëkalimin tuaj." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Ndrysho postën elektronike" @@ -7609,15 +7507,6 @@ msgstr "Ndrysho emrin tim" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7681,7 +7570,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7718,7 +7607,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "Rreth edX" @@ -7761,13 +7650,11 @@ msgstr "Lajmet" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "FAQ" @@ -7789,31 +7676,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -7830,7 +7717,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7846,7 +7732,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7875,7 +7760,7 @@ msgstr "" msgid "Email is incorrect." msgstr "Posta elektronike është gabim." -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Ndhimë" @@ -7935,8 +7820,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8073,7 +7956,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8256,7 +8139,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Problem" @@ -8277,17 +8160,15 @@ msgstr "" msgid "Reject" msgstr "Refuzo" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Shkollat & Partnerët" @@ -8307,13 +8188,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8331,7 +8210,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Regjistrohu tani" @@ -8396,7 +8275,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8407,7 +8285,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8528,11 +8405,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8583,12 +8460,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Paraprake" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Tjetra" @@ -8597,15 +8474,15 @@ msgstr "Tjetra" msgid "Sign Up for {platform_name}" msgstr "Regjistrohu për {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "p.sh. yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "p.sh. emrijuaj (shfaqet në forume)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "p.sh Emri juaj (për certifikatë)" @@ -8706,7 +8583,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8762,7 +8639,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8840,6 +8716,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8854,6 +8742,11 @@ msgstr "Data" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8991,7 +8884,7 @@ msgstr "" msgid "Download video" msgstr "Shkarko videon" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9007,7 +8900,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Hap kalkulatorin" @@ -9346,8 +9238,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9405,12 +9295,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "Shpërndaje me shokët dhe familjen!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9464,6 +9352,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9540,7 +9439,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9576,11 +9475,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Freskimet e kursit & Lajmet" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9588,7 +9487,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9642,7 +9540,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9673,7 +9570,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9687,7 +9583,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9722,7 +9617,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9767,7 +9661,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9858,7 +9751,6 @@ msgstr "Kohëzgjatja (sec)" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9945,7 +9837,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10011,7 +9913,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10020,21 +9921,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10053,11 +9939,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10066,11 +9966,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10091,7 +9986,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10101,7 +9995,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10160,7 +10053,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10214,44 +10106,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Shiko kursin" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10267,7 +10148,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10309,7 +10189,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10507,9 +10386,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Titulli" @@ -10521,7 +10398,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10542,7 +10418,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10707,7 +10582,6 @@ msgstr "Shto një postim" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10726,7 +10600,6 @@ msgstr "" msgid "Topic Area:" msgstr "Tema:" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10839,7 +10712,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -11565,8 +11437,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11626,12 +11496,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Po" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Jo" @@ -11769,7 +11637,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11917,7 +11784,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11982,7 +11848,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12012,24 +11877,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12097,7 +11954,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12211,7 +12067,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12224,7 +12079,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12236,12 +12090,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12263,22 +12115,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12460,7 +12306,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "Ju poashtu mund të e shkarkoni këtë të dhënë si një dokument CSV." @@ -12495,12 +12340,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12513,12 +12356,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12599,7 +12440,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12638,19 +12478,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12995,7 +12832,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13017,7 +12853,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13202,15 +13037,10 @@ msgid " {course_name} " msgstr "{course_name}" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13317,7 +13147,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13343,19 +13172,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13410,12 +13236,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13428,14 +13252,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13707,7 +13528,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13715,19 +13535,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13748,7 +13565,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13759,19 +13575,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13789,7 +13602,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13862,7 +13674,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13878,15 +13689,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14110,7 +13916,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14123,7 +13928,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14179,7 +13983,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14194,9 +13997,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14297,8 +14097,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Dokumentet & Ngarkimet" @@ -14318,8 +14117,7 @@ msgstr "Kontent" msgid "Page Actions" msgstr "Veprimet e faqes" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Shto dokumt të ri" @@ -14389,7 +14187,7 @@ msgstr "Dokumenti juaj është fshirë." msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14426,7 +14224,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14439,7 +14236,7 @@ msgid "Delete this component" msgstr "Fshije këtë komponent" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14562,7 +14359,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14572,7 +14369,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "p.sh UniversitetiX ose OrganizataX" @@ -14582,8 +14378,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14659,7 +14453,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Përditësimet e kursit" @@ -14674,7 +14468,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14729,7 +14522,7 @@ msgstr "Shiko Drejtpërdrejt" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14788,8 +14581,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Faqet" @@ -14808,11 +14601,11 @@ msgstr "" msgid "Show this page" msgstr "Shfaq këtë faqe" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Shfaq/fsheh faqen" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14876,7 +14669,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14918,7 +14710,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15046,8 +14838,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Eksporto në Git" @@ -15091,13 +14882,11 @@ msgstr "Kursi juaj:" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15120,10 +14909,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "Mëso më shumë" @@ -15172,8 +14966,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Konfigurimet e avancuara" @@ -15195,7 +14989,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15240,7 +15034,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "Mësimi është më shumë se vetëm ligjërata" @@ -15284,7 +15077,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15385,7 +15178,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15516,8 +15309,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15533,7 +15325,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15572,7 +15364,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15582,7 +15374,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Krijo" @@ -15613,7 +15405,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15643,7 +15435,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15688,7 +15480,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "Krijo kursin tuaj të parë" @@ -15709,7 +15501,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15717,7 +15509,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15729,7 +15521,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15781,7 +15573,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15789,7 +15581,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15849,7 +15641,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15903,7 +15695,7 @@ msgstr "" msgid "Sign In" msgstr "Kyçu" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15956,13 +15748,11 @@ msgstr "" msgid "Add User" msgstr "Shto përdorues" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "Ju!" @@ -16201,7 +15991,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16260,8 +16049,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16344,7 +16132,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16570,7 +16357,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16622,8 +16408,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16803,7 +16588,7 @@ msgstr "Na kontaktoni" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16843,7 +16628,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16863,12 +16648,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16893,7 +16676,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16909,7 +16692,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16956,11 +16739,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17314,11 +17097,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sq/LC_MESSAGES/djangojs.mo b/conf/locale/sq/LC_MESSAGES/djangojs.mo index 790bfcaa34..b4590e322c 100644 Binary files a/conf/locale/sq/LC_MESSAGES/djangojs.mo and b/conf/locale/sq/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sq/LC_MESSAGES/djangojs.po b/conf/locale/sq/LC_MESSAGES/djangojs.po index 25ec1e3462..39000e43e3 100644 --- a/conf/locale/sq/LC_MESSAGES/djangojs.po +++ b/conf/locale/sq/LC_MESSAGES/djangojs.po @@ -12,27 +12,27 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# Faton Nuha , 2014 +# Faton Nuha , 2014-2015 # #-#-#-#-# underscore.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2015 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# Faton Nuha , 2014 +# Faton Nuha , 2014-2015 # #-#-#-#-# underscore-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2015 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: -# Faton Nuha , 2014 +# Faton Nuha , 2014-2015 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/edx-platform/language/sq/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -75,8 +74,6 @@ msgstr "Ky link do të e hap nje dritare të re të shfletuesit/tab i ri" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "I panjohur" @@ -84,17 +81,14 @@ msgstr "I panjohur" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "Fshije" @@ -179,7 +173,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s pikët e mundshme)" msgstr[1] "(%(num_points)s pikët e mundshme)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Përgjigjja:" @@ -187,7 +180,6 @@ msgstr "Përgjigjja:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Fsheh përgjigjjen" @@ -208,7 +200,6 @@ msgstr "Përgjigjja u fsheh" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -227,7 +218,6 @@ msgstr "Ju duhet të zgjedhni një vlerësim para se ju të mund të e paraqisni #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -296,11 +286,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Shfaq përgjigjjen" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Fsheh përgjigjjen" @@ -308,7 +296,6 @@ msgstr "Fsheh përgjigjjen" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Paragraf" @@ -319,21 +306,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1201,7 +1185,6 @@ msgstr "Fshije link-un" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Zëvendësoj të gjitha" @@ -1215,7 +1198,6 @@ msgstr "Zëvendësoje me" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1550,18 +1532,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1679,7 +1657,6 @@ msgstr "HD aktive" msgid "HD off" msgstr "HD jo aktive" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1726,7 +1703,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Fsheh disktimin" @@ -1736,13 +1712,9 @@ msgid "Show Discussion" msgstr "Shfaq Diskutimin" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1772,8 +1744,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2074,12 +2044,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2119,7 +2087,6 @@ msgstr "Data e postimit" msgid "More" msgstr "Më shumë" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "Shënimet e mia" @@ -2128,32 +2095,26 @@ msgstr "Shënimet e mia" msgid "Instructor" msgstr "Instruktori" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "Publik" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "Kërko" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "Përdoruesit" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2254,7 +2215,6 @@ msgstr "Emri i përdoruesit" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2267,7 +2227,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2455,7 +2414,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2468,10 +2426,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Ju lutem shtypni email adresën ose pseudonimin e studentit." @@ -2482,12 +2436,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2741,7 +2689,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Fshihe)" @@ -2835,7 +2782,7 @@ msgstr "shkruaj përshkrimin e imazhit këtu" msgid "enter link description here" msgstr "shkruaj përshkrimin e link-ut këtu" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "shtyp kodin këtu" @@ -2905,6 +2852,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2926,7 +2877,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2934,7 +2885,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3107,6 +3058,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3153,18 +3112,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3173,7 +3120,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3210,7 +3156,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3221,7 +3167,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3322,8 +3267,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "Nuk është në përdorim" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "Nuk është në përdorim" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3884,7 +3839,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3912,7 +3866,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Bëre të dukshme tek Studentët" @@ -4028,14 +3981,9 @@ msgstr "" msgid "Upload translation" msgstr "Ngarko përkthimin" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4145,7 +4093,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4313,7 +4260,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4371,6 +4317,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4542,6 +4492,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4820,7 +4778,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "Lista e dokumenteve dhe aseteve të ngarkuara në këtë kurs" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4888,6 +4845,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4898,10 +4869,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4927,12 +4906,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "Konfiguro" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5032,7 +5009,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5103,10 +5079,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5239,7 +5211,6 @@ msgstr "Publikimi i fundit %(last_published_date)s nga %(publish_username)s" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "mesazhi" @@ -5318,7 +5289,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5372,7 +5342,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "Ndrysho emrin" @@ -5492,15 +5461,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "Ngarko transkript të re" @@ -5510,11 +5473,8 @@ msgstr "Ngarko transkript të re" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "Shkarkoje transkriptën për editim" @@ -5530,7 +5490,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5555,8 +5514,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "Dëshironi të e zëvendësoni transkriptën edx me transkriptën YouTube?" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5583,8 +5540,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sr/LC_MESSAGES/django.mo b/conf/locale/sr/LC_MESSAGES/django.mo index a925897091..7821a2239f 100644 Binary files a/conf/locale/sr/LC_MESSAGES/django.mo and b/conf/locale/sr/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sr/LC_MESSAGES/django.po b/conf/locale/sr/LC_MESSAGES/django.po index 97b164d980..885e592bdb 100644 --- a/conf/locale/sr/LC_MESSAGES/django.po +++ b/conf/locale/sr/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/edx-platform/language/sr/)\n" @@ -71,7 +71,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -79,7 +79,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -118,15 +116,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -220,6 +214,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -240,7 +310,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -297,6 +367,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -407,102 +484,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -565,7 +546,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1000,7 +981,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1013,7 +994,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1052,7 +1033,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1060,7 +1041,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1099,13 +1080,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1137,17 +1116,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1190,7 +1167,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1346,7 +1322,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1378,7 +1353,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1430,7 +1404,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1459,7 +1432,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1600,8 +1572,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2118,12 +2088,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2242,9 +2206,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2482,7 +2443,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2558,8 +2518,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3140,7 +3098,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3392,7 +3350,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3535,7 +3492,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3583,7 +3539,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3621,7 +3576,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3918,19 +3872,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4039,6 +3989,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4087,7 +4053,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4147,7 +4112,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4212,12 +4177,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4280,9 +4244,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4316,7 +4279,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4350,22 +4313,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4374,7 +4325,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4475,12 +4425,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4594,18 +4541,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4636,7 +4579,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4750,7 +4692,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4817,8 +4758,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4872,7 +4813,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4931,7 +4871,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5180,7 +5119,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5230,7 +5168,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5320,8 +5258,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5417,7 +5354,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5447,14 +5383,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5547,7 +5480,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5584,7 +5517,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5714,7 +5646,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6061,7 +5992,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6167,7 +6097,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6349,7 +6278,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6402,12 +6330,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6427,10 +6352,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6467,7 +6389,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6479,11 +6401,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6505,7 +6427,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6733,12 +6655,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6748,21 +6667,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6840,8 +6751,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6853,12 +6762,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6868,11 +6775,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6984,7 +6889,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7014,7 +6918,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7230,8 +7138,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7243,13 +7150,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7269,7 +7171,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7278,13 +7180,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7299,10 +7199,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7312,7 +7210,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7344,14 +7242,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7365,7 +7262,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7392,13 +7289,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7419,7 +7314,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7502,7 +7396,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7546,7 +7440,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7554,7 +7448,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7588,7 +7482,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7639,15 +7533,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7711,7 +7596,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7748,7 +7633,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7791,13 +7676,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7819,31 +7702,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7860,7 +7743,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7876,7 +7758,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7903,7 +7784,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7963,8 +7844,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8102,7 +7981,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8283,7 +8162,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8304,17 +8183,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8334,13 +8211,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8358,7 +8233,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8423,7 +8298,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8434,7 +8308,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8555,11 +8428,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8610,12 +8483,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8624,15 +8497,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8733,7 +8606,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8789,7 +8662,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8867,6 +8739,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8881,6 +8765,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9018,7 +8907,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9034,7 +8923,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9375,8 +9263,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9434,12 +9320,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9493,6 +9377,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9569,7 +9464,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9605,11 +9500,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9617,7 +9512,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9671,7 +9565,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9702,7 +9595,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9716,7 +9608,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9751,7 +9642,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9796,7 +9686,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9887,7 +9776,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9974,7 +9862,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10040,7 +9938,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10049,21 +9946,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10082,11 +9964,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10095,11 +9991,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10120,7 +10011,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10130,7 +10020,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10190,7 +10079,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10244,44 +10132,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10297,7 +10174,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10339,7 +10215,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10537,9 +10412,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10551,7 +10424,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10572,7 +10444,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10737,7 +10608,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10756,7 +10626,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10871,7 +10740,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11595,8 +11463,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11656,12 +11522,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11799,7 +11663,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11947,7 +11810,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12012,7 +11874,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12042,24 +11903,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12127,7 +11980,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12241,7 +12093,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12254,7 +12105,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12266,12 +12116,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12293,22 +12141,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12490,7 +12332,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12525,12 +12366,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12543,12 +12382,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12629,7 +12466,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12668,19 +12504,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13022,7 +12855,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13044,7 +12876,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13230,15 +13061,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13345,7 +13171,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13371,19 +13196,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13438,12 +13260,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13456,14 +13276,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13735,7 +13552,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13743,19 +13559,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13776,7 +13589,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13787,19 +13599,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13817,7 +13626,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13890,7 +13698,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13906,15 +13713,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14138,7 +13940,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14151,7 +13952,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14207,7 +14007,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14222,9 +14021,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14325,8 +14121,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14346,8 +14141,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14417,7 +14211,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14452,7 +14246,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14465,7 +14258,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14588,7 +14381,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14598,7 +14391,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14608,8 +14400,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14684,7 +14474,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14699,7 +14489,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14754,7 +14543,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14813,8 +14602,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14833,11 +14622,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14901,7 +14690,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14943,7 +14731,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15071,8 +14859,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15116,13 +14903,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15145,10 +14930,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15197,8 +14987,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15220,7 +15010,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15265,7 +15055,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15307,7 +15096,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15408,7 +15197,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15539,8 +15328,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15556,7 +15344,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15595,7 +15383,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15605,7 +15393,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15636,7 +15424,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15666,7 +15454,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15711,7 +15499,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15732,7 +15520,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15740,7 +15528,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15752,7 +15540,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15804,7 +15592,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15812,7 +15600,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15872,7 +15660,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15926,7 +15714,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15979,13 +15767,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16224,7 +16010,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16283,8 +16068,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16367,7 +16151,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16593,7 +16376,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16645,8 +16427,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16826,7 +16607,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16866,7 +16647,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16886,12 +16667,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16916,7 +16695,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16932,7 +16711,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16979,11 +16758,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17337,11 +17116,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sr/LC_MESSAGES/djangojs.mo b/conf/locale/sr/LC_MESSAGES/djangojs.mo index 286a37d81f..ea23cc012f 100644 Binary files a/conf/locale/sr/LC_MESSAGES/djangojs.mo and b/conf/locale/sr/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sr/LC_MESSAGES/djangojs.po b/conf/locale/sr/LC_MESSAGES/djangojs.po index b832e4bef2..40a8db1037 100644 --- a/conf/locale/sr/LC_MESSAGES/djangojs.po +++ b/conf/locale/sr/LC_MESSAGES/djangojs.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/edx-platform/language/sr/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -84,8 +83,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -93,17 +90,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -198,7 +192,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -206,7 +199,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -227,7 +219,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -246,7 +237,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -310,11 +300,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -322,7 +310,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -333,21 +320,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1218,7 +1202,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1232,7 +1215,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1569,18 +1551,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1698,7 +1676,6 @@ msgstr "HD uključen" msgid "HD off" msgstr "HD isključen" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1748,7 +1725,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1758,13 +1734,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1794,8 +1766,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2108,12 +2078,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2155,7 +2123,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2164,32 +2131,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2290,7 +2251,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2303,7 +2263,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2491,7 +2450,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2504,10 +2462,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2518,12 +2472,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2777,7 +2725,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2871,7 +2818,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2941,6 +2888,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2962,7 +2913,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2970,7 +2921,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3148,6 +3099,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3194,18 +3153,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3214,7 +3161,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3254,7 +3200,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3265,7 +3211,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3364,8 +3309,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3574,7 +3519,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3632,8 +3576,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3675,19 +3649,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3696,11 +3657,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3775,8 +3731,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3881,7 +3836,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3920,7 +3874,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3948,7 +3901,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4063,14 +4015,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4181,7 +4128,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4349,7 +4295,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4407,6 +4352,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4578,6 +4527,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4856,7 +4813,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4924,6 +4880,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4934,10 +4904,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4963,12 +4941,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5068,7 +5044,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5139,10 +5114,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5275,7 +5246,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5354,7 +5324,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5408,7 +5377,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5528,15 +5496,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5546,11 +5508,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5566,7 +5525,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5591,8 +5549,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5619,8 +5575,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sv/LC_MESSAGES/django.mo b/conf/locale/sv/LC_MESSAGES/django.mo index a300145498..4b24c265fa 100644 Binary files a/conf/locale/sv/LC_MESSAGES/django.mo and b/conf/locale/sv/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sv/LC_MESSAGES/django.po b/conf/locale/sv/LC_MESSAGES/django.po index 1d11ab8185..924df0fad0 100644 --- a/conf/locale/sv/LC_MESSAGES/django.po +++ b/conf/locale/sv/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-02-09 10:31+0000\n" "Last-Translator: Emil Molander \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/edx-platform/language/sv/)\n" @@ -72,7 +72,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -80,7 +80,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -92,7 +91,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -119,15 +117,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -221,6 +215,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -241,7 +311,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -298,6 +368,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -408,102 +485,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -564,7 +545,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -998,7 +979,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1011,7 +992,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1050,7 +1031,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1058,7 +1039,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1097,13 +1078,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1135,17 +1114,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1188,7 +1165,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1344,7 +1320,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1376,7 +1351,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1428,7 +1402,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1457,7 +1430,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1598,8 +1570,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2116,12 +2086,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2240,9 +2204,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2480,7 +2441,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2556,8 +2516,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3136,7 +3094,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3388,7 +3346,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3531,7 +3488,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3579,7 +3535,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3617,7 +3572,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3914,19 +3868,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4034,6 +3984,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4082,7 +4048,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4142,7 +4107,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4207,12 +4172,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4275,9 +4239,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4311,7 +4274,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4345,22 +4308,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4369,7 +4320,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4470,12 +4420,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4589,18 +4536,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4631,7 +4574,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4743,7 +4685,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4810,8 +4751,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4865,7 +4806,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4924,7 +4864,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5173,7 +5112,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5223,7 +5161,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5313,8 +5251,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5410,7 +5347,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5440,14 +5376,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5540,7 +5473,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5577,7 +5510,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5707,7 +5639,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6054,7 +5985,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6160,7 +6090,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6342,7 +6271,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6395,12 +6323,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6420,10 +6345,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6460,7 +6382,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6472,11 +6394,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6498,7 +6420,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6726,12 +6648,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6741,21 +6660,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6833,8 +6744,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6846,12 +6755,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6861,11 +6768,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6977,7 +6882,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7007,7 +6911,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7223,8 +7131,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7236,13 +7143,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7262,7 +7164,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7271,13 +7173,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7292,10 +7192,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7305,7 +7203,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7337,14 +7235,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7358,7 +7255,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7385,13 +7282,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7412,7 +7307,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7495,7 +7389,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7539,7 +7433,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7547,7 +7441,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7581,7 +7475,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7632,15 +7526,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7704,7 +7589,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7741,7 +7626,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7784,13 +7669,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7812,31 +7695,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7853,7 +7736,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7869,7 +7751,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7896,7 +7777,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7956,8 +7837,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8094,7 +7973,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8275,7 +8154,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8296,17 +8175,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8326,13 +8203,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8350,7 +8225,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8415,7 +8290,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8426,7 +8300,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8547,11 +8420,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8602,12 +8475,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8616,15 +8489,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8725,7 +8598,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8781,7 +8654,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8859,6 +8731,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8873,6 +8757,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9010,7 +8899,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9026,7 +8915,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9365,8 +9253,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9424,12 +9310,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9483,6 +9367,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9559,7 +9454,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9595,11 +9490,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9607,7 +9502,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9661,7 +9555,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9692,7 +9585,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9706,7 +9598,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9741,7 +9632,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9786,7 +9676,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9877,7 +9766,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9964,7 +9852,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10030,7 +9928,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10039,21 +9936,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10072,11 +9954,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10085,11 +9981,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10110,7 +10001,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10120,7 +10010,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10179,7 +10068,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10233,44 +10121,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10286,7 +10163,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10328,7 +10204,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10526,9 +10401,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10540,7 +10413,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10561,7 +10433,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10726,7 +10597,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10745,7 +10615,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10858,7 +10727,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11582,8 +11450,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11643,12 +11509,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11786,7 +11650,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11934,7 +11797,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11999,7 +11861,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12029,24 +11890,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12114,7 +11967,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12228,7 +12080,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12241,7 +12092,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12253,12 +12103,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12280,22 +12128,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12477,7 +12319,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12512,12 +12353,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12530,12 +12369,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12616,7 +12453,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12655,19 +12491,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13009,7 +12842,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13031,7 +12863,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13216,15 +13047,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13331,7 +13157,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13357,19 +13182,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13424,12 +13246,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13442,14 +13262,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13721,7 +13538,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13729,19 +13545,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13762,7 +13575,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13773,19 +13585,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13803,7 +13612,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13876,7 +13684,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13892,15 +13699,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14124,7 +13926,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14137,7 +13938,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14193,7 +13993,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14208,9 +14007,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14311,8 +14107,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14332,8 +14127,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14403,7 +14197,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14438,7 +14232,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14451,7 +14244,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14574,7 +14367,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14584,7 +14377,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14594,8 +14386,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14670,7 +14460,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14685,7 +14475,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14740,7 +14529,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14799,8 +14588,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14819,11 +14608,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14887,7 +14676,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14929,7 +14717,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15057,8 +14845,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15102,13 +14889,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15131,10 +14916,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15183,8 +14973,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15206,7 +14996,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15251,7 +15041,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15293,7 +15082,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15394,7 +15183,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15525,8 +15314,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15542,7 +15330,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15581,7 +15369,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15591,7 +15379,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15622,7 +15410,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15652,7 +15440,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15697,7 +15485,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15718,7 +15506,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15726,7 +15514,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15738,7 +15526,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15790,7 +15578,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15798,7 +15586,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15858,7 +15646,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15912,7 +15700,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15965,13 +15753,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16210,7 +15996,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16269,8 +16054,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16353,7 +16137,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16579,7 +16362,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16631,8 +16413,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16812,7 +16593,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16852,7 +16633,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16872,12 +16653,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16902,7 +16681,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16918,7 +16697,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16965,11 +16744,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17323,11 +17102,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sv/LC_MESSAGES/djangojs.mo b/conf/locale/sv/LC_MESSAGES/djangojs.mo index 047f1420c3..385b35e0be 100644 Binary files a/conf/locale/sv/LC_MESSAGES/djangojs.mo and b/conf/locale/sv/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sv/LC_MESSAGES/djangojs.po b/conf/locale/sv/LC_MESSAGES/djangojs.po index d5fbb2d44d..57326f9eca 100644 --- a/conf/locale/sv/LC_MESSAGES/djangojs.po +++ b/conf/locale/sv/LC_MESSAGES/djangojs.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-11 12:41+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/edx-platform/language/sv/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -82,8 +81,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -91,17 +88,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -194,7 +188,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -202,7 +195,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -223,7 +215,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -242,7 +233,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -306,11 +296,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -318,7 +306,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -329,21 +316,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1214,7 +1198,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1228,7 +1211,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1565,18 +1547,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1694,7 +1672,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1741,7 +1718,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1751,13 +1727,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1787,8 +1759,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2088,12 +2058,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2134,7 +2102,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2143,32 +2110,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2269,7 +2230,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2282,7 +2242,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2470,7 +2429,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2483,10 +2441,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2497,12 +2451,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2756,7 +2704,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2850,7 +2797,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2920,6 +2867,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2941,7 +2892,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2949,7 +2900,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3122,6 +3073,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3168,18 +3127,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3188,7 +3135,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3225,7 +3171,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3236,7 +3182,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3335,8 +3280,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3545,7 +3490,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3603,8 +3547,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3645,18 +3618,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3665,11 +3626,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3744,8 +3700,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3850,7 +3805,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3889,7 +3843,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3917,7 +3870,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4032,14 +3984,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4149,7 +4096,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4317,7 +4263,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4375,6 +4320,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4546,6 +4495,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4824,7 +4781,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4892,6 +4848,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4902,10 +4872,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4931,12 +4909,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5036,7 +5012,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5107,10 +5082,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5243,7 +5214,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5322,7 +5292,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5376,7 +5345,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5496,15 +5464,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5514,11 +5476,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5534,7 +5493,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5559,8 +5517,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5587,8 +5543,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/sw/LC_MESSAGES/django.mo b/conf/locale/sw/LC_MESSAGES/django.mo index a662ed9acd..7481edb4b6 100644 Binary files a/conf/locale/sw/LC_MESSAGES/django.mo and b/conf/locale/sw/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sw/LC_MESSAGES/django.po b/conf/locale/sw/LC_MESSAGES/django.po index 602b3ed47e..5e478c3882 100644 --- a/conf/locale/sw/LC_MESSAGES/django.po +++ b/conf/locale/sw/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-09-09 14:43+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Swahili (http://www.transifex.com/projects/p/edx-platform/language/sw/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/sw/LC_MESSAGES/djangojs.mo b/conf/locale/sw/LC_MESSAGES/djangojs.mo index aa39ca2bc3..b742199bd8 100644 Binary files a/conf/locale/sw/LC_MESSAGES/djangojs.mo and b/conf/locale/sw/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sw/LC_MESSAGES/djangojs.po b/conf/locale/sw/LC_MESSAGES/djangojs.po index 7e16db597b..66901f3a04 100644 --- a/conf/locale/sw/LC_MESSAGES/djangojs.po +++ b/conf/locale/sw/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Swahili (http://www.transifex.com/projects/p/edx-platform/language/sw/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ta/LC_MESSAGES/django.mo b/conf/locale/ta/LC_MESSAGES/django.mo index d8a9590996..d27b6ac964 100644 Binary files a/conf/locale/ta/LC_MESSAGES/django.mo and b/conf/locale/ta/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ta/LC_MESSAGES/django.po b/conf/locale/ta/LC_MESSAGES/django.po index d95d36357f..8d4c81263b 100644 --- a/conf/locale/ta/LC_MESSAGES/django.po +++ b/conf/locale/ta/LC_MESSAGES/django.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-14 04:28+0000\n" "Last-Translator: Shujan Suntharalingam \n" "Language-Team: Tamil (http://www.transifex.com/projects/p/edx-platform/language/ta/)\n" @@ -72,7 +72,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -80,7 +80,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -92,7 +91,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -119,15 +117,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -221,6 +215,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -241,7 +311,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -298,6 +368,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -408,102 +485,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -564,7 +545,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -998,7 +979,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1011,7 +992,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1050,7 +1031,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1058,7 +1039,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1097,13 +1078,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1135,17 +1114,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1188,7 +1165,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1344,7 +1320,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1376,7 +1351,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1428,7 +1402,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1457,7 +1430,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1598,8 +1570,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2116,12 +2086,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2240,9 +2204,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2480,7 +2441,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2556,8 +2516,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3136,7 +3094,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3388,7 +3346,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3531,7 +3488,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3579,7 +3535,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3617,7 +3572,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3914,19 +3868,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4034,6 +3984,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4082,7 +4048,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4142,7 +4107,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4207,12 +4172,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4275,9 +4239,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4311,7 +4274,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4345,22 +4308,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4369,7 +4320,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4470,12 +4420,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4589,18 +4536,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4631,7 +4574,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4743,7 +4685,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4810,8 +4751,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4865,7 +4806,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4924,7 +4864,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5173,7 +5112,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5223,7 +5161,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5313,8 +5251,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5410,7 +5347,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5440,14 +5376,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5540,7 +5473,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5577,7 +5510,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5707,7 +5639,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6054,7 +5985,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6160,7 +6090,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6342,7 +6271,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6395,12 +6323,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6420,10 +6345,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6460,7 +6382,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6472,11 +6394,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6498,7 +6420,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6726,12 +6648,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6741,21 +6660,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6833,8 +6744,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6846,12 +6755,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6861,11 +6768,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6977,7 +6882,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7007,7 +6911,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7223,8 +7131,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7236,13 +7143,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7262,7 +7164,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7271,13 +7173,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7292,10 +7192,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7305,7 +7203,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7337,14 +7235,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7358,7 +7255,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7385,13 +7282,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7412,7 +7307,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7495,7 +7389,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7539,7 +7433,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7547,7 +7441,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7581,7 +7475,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7632,15 +7526,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7704,7 +7589,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7741,7 +7626,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7784,13 +7669,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7812,31 +7695,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7853,7 +7736,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7869,7 +7751,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7896,7 +7777,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7956,8 +7837,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8094,7 +7973,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8275,7 +8154,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8296,17 +8175,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8326,13 +8203,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8350,7 +8225,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8415,7 +8290,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8426,7 +8300,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8547,11 +8420,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8602,12 +8475,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8616,15 +8489,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8725,7 +8598,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8781,7 +8654,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8859,6 +8731,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8873,6 +8757,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9010,7 +8899,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9026,7 +8915,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9365,8 +9253,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9424,12 +9310,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9483,6 +9367,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9559,7 +9454,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9595,11 +9490,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9607,7 +9502,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9661,7 +9555,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9692,7 +9585,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9706,7 +9598,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9741,7 +9632,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9786,7 +9676,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9877,7 +9766,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9964,7 +9852,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10030,7 +9928,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10039,21 +9936,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10072,11 +9954,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10085,11 +9981,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10110,7 +10001,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10120,7 +10010,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10179,7 +10068,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10233,44 +10121,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10286,7 +10163,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10328,7 +10204,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10526,7 +10401,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: wiki/forms.py wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Title" msgstr "தலைப்பு" @@ -10538,7 +10413,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10559,7 +10433,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10724,7 +10597,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10743,7 +10615,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10856,7 +10727,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11580,8 +11450,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11641,12 +11509,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11784,7 +11650,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11932,7 +11797,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11997,7 +11861,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12027,24 +11890,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12112,7 +11967,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12226,7 +12080,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12239,7 +12092,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12251,12 +12103,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12278,22 +12128,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12475,7 +12319,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12510,12 +12353,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12528,12 +12369,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12614,7 +12453,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12653,19 +12491,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13007,7 +12842,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13029,7 +12863,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13214,15 +13047,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13329,7 +13157,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13355,19 +13182,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13422,12 +13246,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13440,14 +13262,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13719,7 +13538,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13727,19 +13545,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13760,7 +13575,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13771,19 +13585,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13801,7 +13612,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13874,7 +13684,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13890,15 +13699,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14122,7 +13926,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14135,7 +13938,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14191,7 +13993,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14206,9 +14007,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14309,8 +14107,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14330,8 +14127,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14401,7 +14197,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14436,7 +14232,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14449,7 +14244,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14572,7 +14367,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14582,7 +14377,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14592,8 +14386,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14668,7 +14460,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14683,7 +14475,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14738,7 +14529,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14797,8 +14588,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14817,11 +14608,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14885,7 +14676,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14927,7 +14717,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15055,8 +14845,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15100,13 +14889,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15129,10 +14916,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15181,8 +14973,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15204,7 +14996,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15249,7 +15041,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15291,7 +15082,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15392,7 +15183,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15523,8 +15314,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15540,7 +15330,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15579,7 +15369,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15589,7 +15379,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15620,7 +15410,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15650,7 +15440,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15695,7 +15485,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15716,7 +15506,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15724,7 +15514,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15736,7 +15526,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15788,7 +15578,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15796,7 +15586,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15856,7 +15646,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15910,7 +15700,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15963,13 +15753,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16208,7 +15996,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16267,8 +16054,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16351,7 +16137,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16577,7 +16362,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16629,8 +16413,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16810,7 +16593,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16850,7 +16633,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16870,12 +16653,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16900,7 +16681,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16916,7 +16697,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16963,11 +16744,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "உள்ளடக்கங்கள்" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "சுருக்கம்" @@ -17321,11 +17102,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ta/LC_MESSAGES/djangojs.mo b/conf/locale/ta/LC_MESSAGES/djangojs.mo index f46a081e5b..3c36a23b14 100644 Binary files a/conf/locale/ta/LC_MESSAGES/djangojs.mo and b/conf/locale/ta/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ta/LC_MESSAGES/djangojs.po b/conf/locale/ta/LC_MESSAGES/djangojs.po index 30b0e0e0d1..9687e9f04d 100644 --- a/conf/locale/ta/LC_MESSAGES/djangojs.po +++ b/conf/locale/ta/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Tamil (http://www.transifex.com/projects/p/edx-platform/language/ta/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -193,7 +187,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -201,7 +194,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -222,7 +214,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -241,7 +232,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -305,11 +295,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -317,7 +305,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -328,21 +315,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1213,7 +1197,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1227,7 +1210,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1564,18 +1546,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1693,7 +1671,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1740,7 +1717,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1750,13 +1726,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1786,8 +1758,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2087,12 +2057,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2133,7 +2101,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2142,32 +2109,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2268,7 +2229,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2281,7 +2241,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2469,7 +2428,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2482,10 +2440,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2496,12 +2450,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2755,7 +2703,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2849,7 +2796,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2919,6 +2866,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2940,7 +2891,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2948,7 +2899,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3121,6 +3072,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3167,18 +3126,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3187,7 +3134,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3224,7 +3170,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3235,7 +3181,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3334,8 +3279,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3544,7 +3489,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3602,8 +3546,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3644,18 +3617,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3664,11 +3625,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3743,8 +3699,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3849,7 +3804,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3888,7 +3842,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3916,7 +3869,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4031,14 +3983,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4148,7 +4095,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4316,7 +4262,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4374,6 +4319,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4545,6 +4494,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4823,7 +4780,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4891,6 +4847,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4901,10 +4871,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4930,12 +4908,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5035,7 +5011,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5106,10 +5081,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5242,7 +5213,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5321,7 +5291,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5375,7 +5344,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5495,15 +5463,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5513,11 +5475,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5533,7 +5492,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5558,8 +5516,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5586,8 +5542,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/te/LC_MESSAGES/django.mo b/conf/locale/te/LC_MESSAGES/django.mo index 33208e95c5..6002628712 100644 Binary files a/conf/locale/te/LC_MESSAGES/django.mo and b/conf/locale/te/LC_MESSAGES/django.mo differ diff --git a/conf/locale/te/LC_MESSAGES/django.po b/conf/locale/te/LC_MESSAGES/django.po index 76fa42cb39..482dbd31fa 100644 --- a/conf/locale/te/LC_MESSAGES/django.po +++ b/conf/locale/te/LC_MESSAGES/django.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-07-14 12:42+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/edx-platform/language/te/)\n" @@ -69,7 +69,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -77,7 +77,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -89,7 +88,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -116,15 +114,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -218,6 +212,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -238,7 +308,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -295,6 +365,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -405,102 +482,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -561,7 +542,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -995,7 +976,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1008,7 +989,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1047,7 +1028,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1055,7 +1036,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1094,13 +1075,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1132,17 +1111,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1185,7 +1162,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1341,7 +1317,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1373,7 +1348,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1425,7 +1399,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1454,7 +1427,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1595,8 +1567,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2113,12 +2083,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2237,9 +2201,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2477,7 +2438,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2553,8 +2513,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3133,7 +3091,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3385,7 +3343,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3528,7 +3485,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3576,7 +3532,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3614,7 +3569,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3911,19 +3865,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4031,6 +3981,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4079,7 +4045,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4139,7 +4104,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4204,12 +4169,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4272,9 +4236,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4308,7 +4271,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4342,22 +4305,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4366,7 +4317,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4467,12 +4417,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4586,18 +4533,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4628,7 +4571,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4740,7 +4682,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4807,8 +4748,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4862,7 +4803,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4921,7 +4861,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5170,7 +5109,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5220,7 +5158,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5310,8 +5248,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5407,7 +5344,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5437,14 +5373,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5537,7 +5470,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5574,7 +5507,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5704,7 +5636,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6051,7 +5982,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6157,7 +6087,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6339,7 +6268,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6392,12 +6320,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6417,10 +6342,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6457,7 +6379,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6469,11 +6391,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6495,7 +6417,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6723,12 +6645,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6738,21 +6657,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6830,8 +6741,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6843,12 +6752,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6858,11 +6765,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6974,7 +6879,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7004,7 +6908,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7220,8 +7128,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7233,13 +7140,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7259,7 +7161,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7268,13 +7170,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7289,10 +7189,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7302,7 +7200,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7334,14 +7232,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7355,7 +7252,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7382,13 +7279,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7409,7 +7304,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7492,7 +7386,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7536,7 +7430,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7544,7 +7438,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7578,7 +7472,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7629,15 +7523,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7701,7 +7586,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7738,7 +7623,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7781,13 +7666,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7809,31 +7692,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7850,7 +7733,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7866,7 +7748,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7893,7 +7774,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7953,8 +7834,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8091,7 +7970,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8272,7 +8151,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8293,17 +8172,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8323,13 +8200,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8347,7 +8222,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8412,7 +8287,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8423,7 +8297,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8544,11 +8417,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8599,12 +8472,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8613,15 +8486,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8722,7 +8595,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8778,7 +8651,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8856,6 +8728,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8870,6 +8754,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9007,7 +8896,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9023,7 +8912,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9362,8 +9250,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9421,12 +9307,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9480,6 +9364,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9556,7 +9451,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9592,11 +9487,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9604,7 +9499,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9658,7 +9552,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9689,7 +9582,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9703,7 +9595,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9738,7 +9629,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9783,7 +9673,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9874,7 +9763,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9961,7 +9849,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10027,7 +9925,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10036,21 +9933,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10069,11 +9951,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10082,11 +9978,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10107,7 +9998,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10117,7 +10007,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10176,7 +10065,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10230,44 +10118,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10283,7 +10160,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10325,7 +10201,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10523,9 +10398,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10537,7 +10410,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10558,7 +10430,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10723,7 +10594,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10742,7 +10612,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10855,7 +10724,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11579,8 +11447,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11640,12 +11506,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11783,7 +11647,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11931,7 +11794,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11996,7 +11858,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12026,24 +11887,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12111,7 +11964,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12225,7 +12077,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12238,7 +12089,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12250,12 +12100,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12277,22 +12125,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12474,7 +12316,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12509,12 +12350,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12527,12 +12366,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12613,7 +12450,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12652,19 +12488,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13006,7 +12839,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13028,7 +12860,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13213,15 +13044,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13328,7 +13154,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13354,19 +13179,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13421,12 +13243,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13439,14 +13259,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13718,7 +13535,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13726,19 +13542,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13759,7 +13572,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13770,19 +13582,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13800,7 +13609,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13873,7 +13681,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13889,15 +13696,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14121,7 +13923,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14134,7 +13935,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14190,7 +13990,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14205,9 +14004,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14308,8 +14104,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14329,8 +14124,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14400,7 +14194,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14435,7 +14229,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14448,7 +14241,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14571,7 +14364,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14581,7 +14374,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14591,8 +14383,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14667,7 +14457,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14682,7 +14472,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14737,7 +14526,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14796,8 +14585,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14816,11 +14605,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14884,7 +14673,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14926,7 +14714,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15054,8 +14842,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15099,13 +14886,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15128,10 +14913,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15180,8 +14970,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15203,7 +14993,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15248,7 +15038,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15290,7 +15079,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15391,7 +15180,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15522,8 +15311,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15539,7 +15327,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15578,7 +15366,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15588,7 +15376,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15619,7 +15407,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15649,7 +15437,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15694,7 +15482,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15715,7 +15503,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15723,7 +15511,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15735,7 +15523,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15787,7 +15575,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15795,7 +15583,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15855,7 +15643,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15909,7 +15697,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15962,13 +15750,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16207,7 +15993,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16266,8 +16051,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16350,7 +16134,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16576,7 +16359,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16628,8 +16410,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16809,7 +16590,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16849,7 +16630,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16869,12 +16650,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16899,7 +16678,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16915,7 +16694,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16962,11 +16741,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17320,11 +17099,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/te/LC_MESSAGES/djangojs.mo b/conf/locale/te/LC_MESSAGES/djangojs.mo index c3dacbbc8d..841dc7b8ac 100644 Binary files a/conf/locale/te/LC_MESSAGES/djangojs.mo and b/conf/locale/te/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/te/LC_MESSAGES/djangojs.po b/conf/locale/te/LC_MESSAGES/djangojs.po index befab114f3..0df48c65ba 100644 --- a/conf/locale/te/LC_MESSAGES/djangojs.po +++ b/conf/locale/te/LC_MESSAGES/djangojs.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/edx-platform/language/te/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -80,8 +79,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -89,17 +86,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -192,7 +186,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -200,7 +193,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -221,7 +213,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -240,7 +231,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -304,11 +294,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -316,7 +304,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -327,21 +314,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1212,7 +1196,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1226,7 +1209,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1563,18 +1545,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1670,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1739,7 +1716,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1749,13 +1725,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1785,8 +1757,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2086,12 +2056,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2132,7 +2100,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2141,32 +2108,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2267,7 +2228,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2280,7 +2240,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2468,7 +2427,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2481,10 +2439,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2495,12 +2449,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2754,7 +2702,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2848,7 +2795,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2918,6 +2865,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2939,7 +2890,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2947,7 +2898,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3120,6 +3071,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3166,18 +3125,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3186,7 +3133,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3223,7 +3169,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3234,7 +3180,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3333,8 +3278,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3543,7 +3488,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3601,8 +3545,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3643,18 +3616,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3663,11 +3624,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3742,8 +3698,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3848,7 +3803,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3887,7 +3841,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3915,7 +3868,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4030,14 +3982,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4147,7 +4094,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4315,7 +4261,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4373,6 +4318,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4544,6 +4493,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4822,7 +4779,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4890,6 +4846,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4900,10 +4870,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4929,12 +4907,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5034,7 +5010,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5105,10 +5080,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5241,7 +5212,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5320,7 +5290,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5374,7 +5343,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5494,15 +5462,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5512,11 +5474,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5532,7 +5491,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5557,8 +5515,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5585,8 +5541,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/th/LC_MESSAGES/django.mo b/conf/locale/th/LC_MESSAGES/django.mo index 03190403b1..2cea612dc7 100644 Binary files a/conf/locale/th/LC_MESSAGES/django.mo and b/conf/locale/th/LC_MESSAGES/django.mo differ diff --git a/conf/locale/th/LC_MESSAGES/django.po b/conf/locale/th/LC_MESSAGES/django.po index 52c075c502..cf1afa4c29 100644 --- a/conf/locale/th/LC_MESSAGES/django.po +++ b/conf/locale/th/LC_MESSAGES/django.po @@ -23,6 +23,7 @@ # Translators: # J.14 , 2014 # Monthol , 2014 +# Noppachai Eiamwasant , 2015 # peemmaruj , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX translation file @@ -80,8 +81,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" -"PO-Revision-Date: 2015-02-15 17:41+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" +"PO-Revision-Date: 2015-02-23 11:23+0000\n" "Last-Translator: Noppachai Eiamwasant \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" "MIME-Version: 1.0\n" @@ -111,7 +112,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -119,7 +120,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -131,7 +131,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -158,15 +157,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -260,6 +255,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -280,7 +351,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -337,6 +408,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -447,102 +525,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -601,7 +583,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1034,7 +1016,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1047,7 +1029,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1086,7 +1068,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1094,7 +1076,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1133,13 +1115,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1171,17 +1151,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1224,7 +1202,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1380,7 +1357,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1412,7 +1388,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1464,7 +1439,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1493,7 +1467,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1634,8 +1607,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2152,12 +2123,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2276,9 +2241,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2516,7 +2478,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2592,8 +2553,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3170,7 +3129,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3422,7 +3381,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3565,7 +3523,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3613,7 +3570,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3651,7 +3607,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3948,19 +3903,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4067,6 +4018,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4115,7 +4082,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4175,7 +4141,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4240,12 +4206,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4308,9 +4273,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4344,7 +4308,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4378,22 +4342,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4402,7 +4354,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4503,12 +4454,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4622,18 +4570,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4664,7 +4608,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4774,7 +4717,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4841,8 +4783,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4896,7 +4838,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4955,7 +4896,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5204,7 +5144,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5254,7 +5193,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5344,8 +5283,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5441,7 +5379,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5471,14 +5408,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5571,7 +5505,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5608,7 +5542,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5738,7 +5671,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6085,7 +6017,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6191,7 +6122,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6373,7 +6303,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6426,12 +6355,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6451,10 +6377,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6491,7 +6414,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6503,11 +6426,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6529,7 +6452,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6757,12 +6680,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6772,21 +6692,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6864,8 +6776,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6877,12 +6787,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6892,11 +6800,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7008,7 +6914,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7038,7 +6943,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7254,8 +7163,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7267,13 +7175,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7293,7 +7196,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7302,13 +7205,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7323,10 +7224,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7336,7 +7235,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7368,14 +7267,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7389,7 +7287,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7416,13 +7314,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7443,7 +7339,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7526,7 +7421,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7570,7 +7465,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7578,7 +7473,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7612,7 +7507,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7663,15 +7558,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7735,7 +7621,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7772,7 +7658,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7815,13 +7701,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7843,31 +7727,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7884,7 +7768,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7900,7 +7783,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7927,7 +7809,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7987,8 +7869,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8124,7 +8004,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8305,7 +8185,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8326,17 +8206,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8356,13 +8234,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8380,7 +8256,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8445,7 +8321,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8456,7 +8331,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8577,11 +8451,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8632,12 +8506,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8646,15 +8520,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8755,7 +8629,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8811,7 +8685,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8889,6 +8762,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8903,6 +8788,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9040,7 +8930,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9056,7 +8946,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9393,8 +9282,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9452,12 +9339,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9511,6 +9396,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9587,7 +9483,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9623,11 +9519,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9635,7 +9531,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9689,7 +9584,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9720,7 +9614,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9734,7 +9627,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9769,7 +9661,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9814,7 +9705,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9905,7 +9795,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9992,7 +9881,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10058,7 +9957,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10067,21 +9965,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10100,11 +9983,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10113,11 +10010,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10138,7 +10030,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10148,7 +10039,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10206,7 +10096,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10260,44 +10149,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10313,7 +10191,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10355,7 +10232,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10553,9 +10429,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10567,7 +10441,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10588,7 +10461,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10753,7 +10625,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10772,7 +10643,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10883,7 +10753,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11607,8 +11476,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11668,12 +11535,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11811,7 +11676,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11959,7 +11823,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12024,7 +11887,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12054,24 +11916,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12139,7 +11993,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12253,7 +12106,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12266,7 +12118,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12278,12 +12129,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12305,22 +12154,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12502,7 +12345,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12537,12 +12379,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12555,12 +12395,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12641,7 +12479,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12680,19 +12517,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13034,7 +12868,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13056,7 +12889,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13240,15 +13072,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13355,7 +13182,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13381,19 +13207,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13448,12 +13271,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13466,14 +13287,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13745,7 +13563,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13753,19 +13570,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13786,7 +13600,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13797,19 +13610,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13827,7 +13637,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13900,7 +13709,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13916,15 +13724,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14148,7 +13951,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14161,7 +13963,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14217,7 +14018,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14232,9 +14032,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14337,8 +14134,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14358,8 +14154,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14429,7 +14224,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14464,7 +14259,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14477,7 +14271,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14600,7 +14394,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14610,7 +14404,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14620,8 +14413,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14696,7 +14487,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14711,7 +14502,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14766,7 +14556,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14825,8 +14615,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14845,11 +14635,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14913,7 +14703,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14955,7 +14744,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15083,8 +14872,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15128,13 +14916,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15157,10 +14943,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15209,8 +15000,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15232,7 +15023,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15277,7 +15068,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15319,7 +15109,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15420,7 +15210,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15551,8 +15341,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15568,7 +15357,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15607,7 +15396,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15617,7 +15406,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15648,7 +15437,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15678,7 +15467,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15723,7 +15512,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15744,7 +15533,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15752,7 +15541,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15764,7 +15553,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15816,7 +15605,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15824,7 +15613,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15884,7 +15673,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15938,7 +15727,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15991,13 +15780,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16236,7 +16023,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16295,8 +16081,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16379,7 +16164,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16605,7 +16389,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16657,8 +16440,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16838,7 +16620,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16878,7 +16660,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16898,12 +16680,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16928,7 +16708,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16944,7 +16724,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16991,11 +16771,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17349,11 +17129,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/th/LC_MESSAGES/djangojs.mo b/conf/locale/th/LC_MESSAGES/djangojs.mo index 7d0abf6656..16bf598106 100644 Binary files a/conf/locale/th/LC_MESSAGES/djangojs.mo and b/conf/locale/th/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/th/LC_MESSAGES/djangojs.po b/conf/locale/th/LC_MESSAGES/djangojs.po index 062b2da66e..5e47d9f9dd 100644 --- a/conf/locale/th/LC_MESSAGES/djangojs.po +++ b/conf/locale/th/LC_MESSAGES/djangojs.po @@ -6,6 +6,7 @@ # Translators: # J.14 , 2014 # J.14 , 2014 +# Noppachai Eiamwasant , 2015 # peemmaruj , 2014 # peemmaruj , 2014 # Pornchai Tummarattananont , 2015 @@ -38,8 +39,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-15 16:11+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-23 08:31+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" "MIME-Version: 1.0\n" @@ -52,7 +53,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -92,8 +92,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -101,17 +99,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -202,7 +197,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -210,7 +204,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -231,7 +224,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -250,7 +242,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -314,11 +305,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -326,7 +315,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -337,21 +325,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1222,7 +1207,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1236,7 +1220,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1573,18 +1556,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1702,7 +1681,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1746,7 +1724,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1756,13 +1733,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1792,8 +1765,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2080,12 +2051,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2125,7 +2094,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2134,32 +2102,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2260,7 +2222,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2273,7 +2234,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2461,7 +2421,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2474,10 +2433,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2488,12 +2443,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2747,7 +2696,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2841,7 +2789,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2911,6 +2859,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2932,7 +2884,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2940,7 +2892,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3108,6 +3060,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3154,18 +3114,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3174,7 +3122,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3208,7 +3155,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3219,7 +3166,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3318,8 +3264,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3528,7 +3474,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3586,8 +3531,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3627,17 +3600,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3646,11 +3608,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3725,8 +3682,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3831,7 +3787,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3870,7 +3825,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3898,7 +3852,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4013,14 +3966,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4129,7 +4077,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4297,7 +4244,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4355,6 +4301,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4526,6 +4476,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4804,7 +4762,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4872,6 +4829,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4882,10 +4853,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4911,12 +4890,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5016,7 +4993,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5087,10 +5063,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5223,7 +5195,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5302,7 +5273,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5356,7 +5326,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5476,15 +5445,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5494,11 +5457,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5514,7 +5474,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5539,8 +5498,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5567,8 +5524,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.mo b/conf/locale/tr_TR/LC_MESSAGES/django.mo index c219b8719d..44ad092376 100644 Binary files a/conf/locale/tr_TR/LC_MESSAGES/django.mo and b/conf/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.po b/conf/locale/tr_TR/LC_MESSAGES/django.po index d411baf095..68c9533ed0 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/django.po +++ b/conf/locale/tr_TR/LC_MESSAGES/django.po @@ -88,7 +88,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Hakan Şenel \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/edx-platform/language/tr_TR/)\n" @@ -116,11 +116,10 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Tartışma" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -133,7 +132,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -160,15 +158,11 @@ msgstr "Tamamlanmış" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "İsim" @@ -260,6 +254,84 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "En az iki harften oluşan kullanıcı ismi yazmanız gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "Geçerli biçimde e-posta adresi gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "Geçerli bir şifre gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "En az iki harften oluşan kimliğinizde yazan isminiz gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" +"Kullanıcı adınız sadece A-Z ve 0-9 karakterlerinden boşluk bulunmadan " +"oluşabilir." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Hizmet koşullarını kabul etmelisiniz." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "En son eğitim seviyesinin girilmesi gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "Cinsiyetiniz gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "Doğum yılınız gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "Posta adresiniz gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "Hedeflerinizin tanımı gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "Bir şehir gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "Bir ülke gerekiyor" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Kaydolmak için onur kodunu kabul etmeniz gerekmektedir. " + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "Şifre:" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -280,7 +352,7 @@ msgstr "Kadın" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Diğer" @@ -336,6 +408,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -454,104 +533,6 @@ msgstr "Bu kullanıcı '{username}' adı ile zaten mevcut." msgid "An account with the Email '{email}' already exists." msgstr "Bu e-postaya '{email}' ait bir hesap zaten bulunmaktadır." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Hata (401 {field}). Bize e-posta atın." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Kaydolmak için onur kodunu kabul etmeniz gerekmektedir. " - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Hizmet koşullarını kabul etmelisiniz." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "En az iki harften oluşan kullanıcı ismi yazmanız gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "Geçerli biçimde e-posta adresi gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "En az iki harften oluşan kimliğinizde yazan isminiz gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "Geçerli bir şifre gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "Hizmet Şartlarını Kabul Gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Onur Kodunun kabul edilmesi gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "En son eğitim seviyesinin girilmesi gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "Cinsiyetiniz gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "Doğum yılınız gerekiyor" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "Posta adresiniz gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "Hedeflerinizin tanımı gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "Bir şehir gerekiyor" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "Bir ülke gerekiyor" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Geçerli bir e-posta adresi gerekmektedir." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" -"Kullanıcı adınız sadece A-Z ve 0-9 karakterlerinden boşluk bulunmadan " -"oluşabilir." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "Şifre:" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Aktivasyon e-postası gönderilemedi." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -612,7 +593,7 @@ msgstr "" msgid "Name required" msgstr "İsim gerekmektedir." -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Geçersiz ID" @@ -1045,7 +1026,7 @@ msgstr "yanlış" msgid "incomplete" msgstr "eksik" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "cevaplanmamış" @@ -1058,7 +1039,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1101,7 +1082,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1109,7 +1090,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1146,12 +1127,10 @@ msgstr "" msgid "Execution of unsafe Javascript code is not allowed." msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "Seçenek Kutucukları" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "Çoktan Seçmeli" @@ -1182,17 +1161,15 @@ msgstr "" msgid "True/False Choice" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "Açılır Liste" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "Nümerik Girdi" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "Bu probleme personelin verdiği yanıtta bir sorun vardı." @@ -1236,7 +1213,6 @@ msgid "" "There was a problem with the staff answer to this problem: empty boundary." msgstr "Çalışanların bu soruya cevap vermesinde sorun yaşandı: boş sınır" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "Metin Girişi" @@ -1392,7 +1368,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1424,7 +1399,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1474,7 +1448,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1503,7 +1476,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1646,8 +1618,6 @@ msgstr "Eğer hata devam ederse, lütfen dersin personeliyle temasa geçiniz." #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Problem yanıtlara kapandı." @@ -2168,12 +2138,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2292,9 +2256,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2531,7 +2492,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Hakkında" @@ -2607,8 +2567,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3190,7 +3148,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Ders Kitapları" @@ -3452,7 +3410,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3598,7 +3555,6 @@ msgstr "Eğitmen-Değerlendirme" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "YZ-Değerlendirme" @@ -3651,7 +3607,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "Notlandırıcıdan geri beslem alırken hata." @@ -3689,7 +3644,6 @@ msgstr "İşlem görüyor" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "Bitti" @@ -3993,15 +3947,12 @@ msgstr "Arama" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "Telif Hakkı" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py msgid "Username" msgstr "Kullanıcı adı" @@ -4108,6 +4059,22 @@ msgstr "Kullanıcı {username} yok." msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "HATA: Oynatılabilir video kaynağı bulunamadı!" @@ -4161,7 +4128,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4220,7 +4186,7 @@ msgstr "sabit şifre" msgid "All ok!" msgstr "Herşey tamam!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Kullanıcı adı vermelisiniz" @@ -4285,8 +4251,7 @@ msgstr "Toplam kullanıcı sayısı" msgid "Courses loaded in the modulestore" msgstr "Modül Mağazasına Yüklenen Dersler" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html #, fuzzy msgid "username" msgstr "" @@ -4295,7 +4260,7 @@ msgstr "" "#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" "kullanıcıadı" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "e-posta" @@ -4364,7 +4329,7 @@ msgstr "Başarıyla dala geçildi: {branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "Ders Adı" @@ -4398,7 +4363,7 @@ msgstr "Hata - {0}
{1}
numaralı ders getirilemedi" msgid "Deleted" msgstr "Silindi" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "ders_no" @@ -4434,22 +4399,10 @@ msgstr "" "Belirlenen git deposunu ve opsiyonel dalı modül mağazasına ve opsiyonel " "olarak belirlenmiş dizine aktarma." -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "İpliği Tekrar Açın" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "İpliği Kapatın" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Başlık boş olamaz" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Gövde boş olamaz" @@ -4458,7 +4411,6 @@ msgstr "Gövde boş olamaz" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "Yorum Seviyesi Çok Derin" @@ -4560,12 +4512,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "E-posta" @@ -4684,18 +4633,14 @@ msgstr "Öğrenci {0} için teslim tarihi {1}'dan {2}'ye sıfırlandı" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4726,7 +4671,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4834,7 +4778,6 @@ msgstr "Lütfen bir ödev ismi girin" msgid "Invalid assignment name '{name}'" msgstr "Geçersiz ödev ismi '{name}' " -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "Dış e-posta" @@ -4901,8 +4844,8 @@ msgstr "No" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html #, fuzzy @@ -4961,7 +4904,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Ertelenmiş Son Gün" @@ -5020,7 +4962,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Durum bilgisi bulunmamaktadır." @@ -5282,7 +5223,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "Öğrenciler tarafında uygunsuz olarak işaretlenmiş yanıtları gör." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Notlandırılacak yeni yüklemeler var" @@ -5336,7 +5276,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5426,8 +5366,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5522,7 +5461,6 @@ msgstr "Geri Ödeme Tarihi" msgid "Amount of Refund" msgstr "Geri Ödeme Miktarı" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Servis Ücretleri (eğer varsa)" @@ -5552,12 +5490,10 @@ msgstr "Para" msgid "Comments" msgstr "Yorumlar" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "Üniversite" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Ders" @@ -5651,7 +5587,7 @@ msgstr "" msgid "Course added to cart." msgstr "Ders sepete eklendi." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5688,7 +5624,6 @@ msgstr "Bu sayfayı görmek için yetkiniz yok." msgid "The payment processor did not return a required parameter: {0}" msgstr "Ödeme işlemcisi gerekli bir parametreyi döndürmedi: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5844,7 +5779,6 @@ msgid "" msgstr "" "Hesapta yetersiz bakiye. Olası çözüm: diğer bir ödeme türünü seçerek deneyin" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Bilinmeyen neden" @@ -6219,7 +6153,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "Fotoğraf çekiniz" @@ -6325,7 +6258,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Parolanızın Sıfırlama İşlemi Tamam" @@ -6533,7 +6465,6 @@ msgstr "Yazıyı sil" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Sil" @@ -6591,12 +6522,9 @@ msgstr "Önizleme" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6616,10 +6544,7 @@ msgstr "Wiki Önizleme" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "pencere açık" @@ -6660,7 +6585,7 @@ msgstr "Otomatik giriş:" msgid "Change" msgstr "Değiştir" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Seçili ögeyi şu anki öge ile birleştir..." @@ -6672,11 +6597,11 @@ msgstr "Seçili sürüme geç." msgid "Wiki Revision Preview" msgstr "Wiki Revizyon Gözden Geçirme" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Geçmişi görüntüleye geri dön." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Bu versiyona geçiş yap" @@ -6701,7 +6626,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Bundan sonra, elle gözden geçirmek önemlidir." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Yeni birleştirilmiş sürüm yarat" @@ -6944,30 +6869,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Şifre" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7032,8 +6947,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "Onur Kodu" @@ -7042,23 +6955,19 @@ msgstr "Onur Kodu" msgid "Terms of Service and Honor Code" msgstr "Servis Koşulları ve Onur Kodu" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Hizmet Şartları" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Geçersiz ders güncelleme numarası." @@ -7183,7 +7092,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7216,7 +7124,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7426,8 +7338,7 @@ msgstr "Sayfa bulunamadı" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7439,13 +7350,8 @@ msgstr "" msgid "close" msgstr "kapat" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7465,7 +7371,7 @@ msgstr "İptal" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Ayarlar" @@ -7474,13 +7380,11 @@ msgstr "Ayarlar" msgid "Error:" msgstr "Hata:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Organizasyon:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7495,10 +7399,8 @@ msgstr "Dersler" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "E-posta" @@ -7508,7 +7410,7 @@ msgstr "E-posta" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "örnek: kullanıcıadı@domain.com" @@ -7540,14 +7442,13 @@ msgstr "örnek: Zeliha Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Görüntü ismi" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "örnek: Hakan" @@ -7561,7 +7462,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Ayrıntılar" @@ -7589,13 +7490,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Gizlilik İlkeleri" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Yardım" @@ -7616,7 +7515,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7699,7 +7597,7 @@ msgstr "Yeni" msgid "Dashboard" msgstr "Ana panel" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "düzenle" @@ -7743,7 +7641,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Parola Sıfırla" @@ -7751,7 +7649,7 @@ msgstr "Parola Sıfırla" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7787,7 +7685,7 @@ msgstr "" "Email {email} adrese yollandı. Şifrenizi değiştirmek için email içindeki " "linke tıklayınız." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Eposta Değiştir" @@ -7840,15 +7738,6 @@ msgstr "Adımı Değiştir" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "Kaydı iptal et" @@ -7913,7 +7802,7 @@ msgstr "Öğrenciler reddedildi:" msgid "Debug: " msgstr "Debug:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Harici Kimlik Denetleme başarısız oldu" @@ -7950,7 +7839,7 @@ msgstr "Girildi" msgid "Puzzle Leaderboard" msgstr "Puzzle Lider listesi" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7993,13 +7882,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "İletişim" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Sık Sorulanlar" @@ -8021,31 +7908,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8062,7 +7949,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "İşler" @@ -8078,7 +7964,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Şifre Sıfırlama" @@ -8106,7 +7991,7 @@ msgstr "Parolamı Sıfırla" msgid "Email is incorrect." msgstr "E-posta hatalı" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Yardım" @@ -8179,8 +8064,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8322,7 +8205,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "Yararlı bilgiler" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "OpenID aracılığıyla giriş yap" @@ -8519,7 +8402,7 @@ msgstr "Ham veri:" msgid "Accepted" msgstr "Kabul Edildi" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Hata" @@ -8540,17 +8423,15 @@ msgstr "Onayla" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Nasıl Çalışır" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Dersleri Bul" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8570,13 +8451,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Kaydol" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8594,7 +8473,7 @@ msgstr "Küresel Navigasyon" msgid "Schools" msgstr "Okullar" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Şimdi Kayıt Ol" @@ -8659,7 +8538,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Kaydınızı işlerden aşağıdaki hatalar oldu:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8672,7 +8550,6 @@ msgid "Enter a public username:" msgstr "Genel kullanıcı adı girin:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "İçinde olduğunuz forumlarda ve tartışmalarda gözükecek olan" @@ -8807,11 +8684,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Kayıt olmak için lütfen aşağıdaki gerekli alanları tamamlayın." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Kazanabileceğiniz herhangi bir sertifika için gerekli" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "daha sonra değiştirilemez" @@ -8864,12 +8741,12 @@ msgstr "" "{platform_name}'dan gelen duyuru e-postalarının gelişi yeniden aktiflendi. " "Panele dönmek için {dashboard_link_start}buraya{link_end} tıklayın." -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Önceki" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Sonraki" @@ -8878,15 +8755,15 @@ msgstr "Sonraki" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "Ör. adınız@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "ör. isminiz (forumlarda gözükecek)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "ör. İsminiz (sertifikada gözükecek)" @@ -8987,7 +8864,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "Öğrencilerin Cevaplarını Yeniden Notlandır" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Modül Alanları" @@ -9043,7 +8920,6 @@ msgstr "Görevlendirme ve Kayıt" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Git Logları" @@ -9121,6 +8997,18 @@ msgstr "Siteden dersi sil" msgid "Platform Version" msgstr "Platform Sürümü" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9135,6 +9023,11 @@ msgstr "Tarih" msgid "Git Action" msgstr "Git Aksiyonu" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9287,7 +9180,7 @@ msgstr "Geriye altyazının başına git." msgid "Download video" msgstr "Video indir" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Altyazı indir" @@ -9303,7 +9196,6 @@ msgstr "Senin kelimelerin:" msgid "Total number of words:" msgstr "Toplam kelime sayısı:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Hesap Makinesini Aç" @@ -9648,8 +9540,6 @@ msgstr "{chapter}, mevcut bölüm" msgid "due {date}" msgstr "teslim {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9711,12 +9601,10 @@ msgstr "Önizlem" msgid "Share with friends and family!" msgstr "Bunu ailen ve arkadaşlarınla paylaş!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9770,6 +9658,17 @@ msgstr "" msgid "Additional Resources" msgstr "Ek Kaynaklar" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "Kaydol" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9846,7 +9745,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9882,11 +9781,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Ders Güncellemeleri & Haberleri" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Bildiri Navigasyonu" @@ -9894,7 +9793,6 @@ msgstr "Bildiri Navigasyonu" msgid "Course Handouts" msgstr "Ders Notları" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9948,7 +9846,6 @@ msgstr "Grupları yönet" msgid "Grade Downloads" msgstr "Not İndirmeler" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9981,7 +9878,6 @@ msgstr "" "Bunun çalışabilmesi için, bu ders için tanımlı ödevlerin not defterinde " "kaydedilmiş olanlarla eşleşmesi gerekiyor!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "Karne adı:" @@ -9995,7 +9891,6 @@ msgstr "Ödev ismi:" msgid "Course-specific grade adjustment" msgstr "Derse özel not düzeltme" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10030,7 +9925,6 @@ msgstr "Kayıt Verisi" msgid "Pull enrollment from remote gradebook" msgstr "Kayıt bilgilerini uzaktaki not defterinden çek" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Altbölüm:" @@ -10075,7 +9969,6 @@ msgstr "Gün" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Öğrenciler" @@ -10168,7 +10061,6 @@ msgstr "Süre (sn)" msgid "Task Progress" msgstr "Görev İlerlemesi" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "bilinmeyen" @@ -10255,7 +10147,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "Öğrenci için Ders Gidişatı {username}' ({email})" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10337,7 +10239,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "{cert_name_short}'nız Oluşturuluyor" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Bu link PDF formatında açılacak/indirilecek" @@ -10346,24 +10247,6 @@ msgstr "Bu link PDF formatında açılacak/indirilecek" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -" {cert_name_long}'nız oluşturulurken, sizin denetlenmiş fotoğraflarınız " -"elimize geçmediğinden, kimlik denetimli {cert_name_short} veremiyoruz. Bunun" -" yerine onur kodu {cert_name_short} verilmiştir." - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "İndir {cert_name_short} (PDF)" @@ -10384,11 +10267,28 @@ msgstr "Kimlik Onaylı {cert_name_short} (PDF)'ınızı İndirin" msgid "Complete our course feedback survey" msgstr "Ders geri bildirim anketini tamamla" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +" {cert_name_long}'nız oluşturulurken, sizin denetlenmiş fotoğraflarınız " +"elimize geçmediğinden, kimlik denetimli {cert_name_short} veremiyoruz. Bunun" +" yerine onur kodu {cert_name_short} verilmiştir." + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} Kapak resmi" @@ -10397,11 +10297,6 @@ msgstr "{course_number} {course_name} Kapak resmi" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "Kaydolunan isim:" @@ -10422,7 +10317,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10432,7 +10326,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10490,7 +10383,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10548,44 +10440,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Arşivlenmiş Kursları Görüntüle" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Kursa Gözat" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "E-posta Ayarları" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10601,7 +10482,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: {date} e kadar yeniden onaylayın" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Uyarı İşlemleri" @@ -10649,7 +10529,6 @@ msgstr "Reddedildi:" msgid "Approved:" msgstr "Kabul edildi:" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "Kimlik Doğrulama Durumu" @@ -10849,9 +10728,7 @@ msgstr "İleti Düzenleniyor" msgid "Edit post title" msgstr "İleti başlığını düzeltme" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Başlık" @@ -10863,7 +10740,6 @@ msgstr "İleti Güncelle" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "Bir yorum ekleyin" @@ -10884,7 +10760,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11053,7 +10928,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11072,7 +10946,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11183,7 +11056,6 @@ msgstr "Forumda bakım yapılıyor. En kısa zamanda çalışır hale getireceğ msgid "User Profile" msgstr "Kullanıcı Profili" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "..." @@ -11918,8 +11790,6 @@ msgstr "Sonradan göz atmak için uygunsuz içerik olarak işaretle" msgid "Skip" msgstr "Atla" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11979,12 +11849,10 @@ msgstr "Dersin Gösterilecek İsmi:" msgid "Has the course started?" msgstr "Ders başladı mı?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "Evet" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "Hayır" @@ -12125,7 +11993,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12273,7 +12140,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12338,7 +12204,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12371,9 +12236,6 @@ msgstr "" "öğrenci için teslim tarihini öne çekemeyeceğinizi bilmelisiniz." #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -12382,15 +12244,10 @@ msgstr "" "belirleyin:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "Öğrenci E-postası ve Kullanıcı Adı" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "Notlandırılmış birimi seçiniz:" @@ -12465,7 +12322,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12583,7 +12439,6 @@ msgstr "Problem listesi yükleniyor.." msgid "Gender Distribution" msgstr "Cinsiyet Dağılımı" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Eğitmen Anapaneli" @@ -12596,7 +12451,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "Yığın Kaydı" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12608,12 +12462,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Otomatik Kayıt" @@ -12635,22 +12487,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "Kullanıcıları eposta ile bildirim yap" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "Kaydol" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12860,7 +12706,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12895,12 +12740,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "E-posta Gönder" @@ -12913,12 +12756,10 @@ msgstr "Gönderilecek kişi:" msgid "Myself" msgstr "Kendim" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Personel ve eğitmenler" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Bütün (öğrenciler, personel ve eğitmenler)" @@ -13011,7 +12852,6 @@ msgstr "" msgid "Show Email Task History" msgstr "E-posta Görev Geçmişini Göster" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -13051,19 +12891,16 @@ msgstr "Öğrenci İlerleme Sayfası" msgid "Student-specific grade adjustment" msgstr "Öğrenciye özel not düzeltme" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13441,7 +13278,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13463,7 +13299,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13650,15 +13485,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13765,7 +13595,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13791,19 +13620,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13863,12 +13689,10 @@ msgstr "" "kullanılmamaktadır ama Open edX kurulumlarındaki olası kullanımı için burada" " bırakılmıştır." -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13881,14 +13705,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "Medya kiti" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Basında" @@ -14171,7 +13992,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14181,19 +14001,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "Yeniden Al" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "İyi görünüyor" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "Başarılı bir fotoğraf çekebilmek için ipüçları" @@ -14214,7 +14031,6 @@ msgstr "Kimliğiniz üzerindeki fotoğrafla çektiğinizini eşleştirebilir miy #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "Pozisyona girdiğinizde, kamera butonunu kullanın" @@ -14225,19 +14041,16 @@ msgstr "resminizi çekebilmek için" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "Onay imi butonunu kullanın " #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "fotoğrafınızdan memnun olduğunuzda" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "Sıkça Sorulan Sorular" @@ -14257,7 +14070,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "Bu resimle ne yapacaksınız?" @@ -14341,7 +14153,6 @@ msgstr "Diğer yeniden doğrulamalarınızı tamamlayın" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "Nerede kaldıysanız oraya dönün" @@ -14357,15 +14168,10 @@ msgstr "Kimlik Denetimli Yoldasınız" msgid "You currently need to re-verify for the following courses:" msgstr "Aşağıdaki dersler için kimliğinizi şimdi tekrar onaylamanız gerekli:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "{date}'e kadar tekrar onaylayın" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14618,7 +14424,6 @@ msgstr "" "Fotoğrafları ön izleyin ve aşağıda listelenen gerekleri karşılayıp " "karşılamadığına emin olun." -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "Yukarıdaki fotoğraf aşağıdaki niteliklere sahip olmalıdır:" @@ -14631,7 +14436,6 @@ msgstr "İyi aydınatılsın" msgid "Show your whole face" msgstr "Yüzünüzün tamamını gösteriniz" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "Kimliğinizdeki foto yüzünüzle eşleşmeli" @@ -14696,7 +14500,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "Panelinize Geri Dönün" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "Yeniden Onaylama Başarısız" @@ -14714,9 +14517,6 @@ msgid "Please contact support if you believe this message to be in error." msgstr "" "Bu mesajın bir hata olduğunu düşünüyorsanız destek bölümüyle temasa geçiniz." -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(aktif){span_end}" @@ -14819,8 +14619,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Dosyalar & Yüklemeler" @@ -14840,8 +14639,7 @@ msgstr "İçerik" msgid "Page Actions" msgstr "Sayfa İşlemleri" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Yeni dDsya Yükle" @@ -14911,7 +14709,7 @@ msgstr "Dosyanız silindi." msgid "close alert" msgstr "uyarıyı kapat" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Ders Kontrol Listesi" @@ -14951,7 +14749,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "Kopyasını Çıkar" @@ -14964,7 +14761,7 @@ msgid "Delete this component" msgstr "Bu bileşeni silin" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -15087,7 +14884,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Kuruluş" @@ -15097,7 +14894,6 @@ msgstr "Kuruluş" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "örn. ÜniversiteX veya KuruluşX" @@ -15107,8 +14903,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -15183,7 +14977,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Ders Güncellemeleri" @@ -15202,7 +14996,6 @@ msgstr "" " ve öğrencilerin sorularına yanıt vermek için kullanın. Güncellemeleri HTML " "içinde değiştirebilir yenilerini ekleyebilirsiniz." -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Ders Taslağı" @@ -15257,7 +15050,7 @@ msgstr "Canlı Görüntüle" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15316,8 +15109,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "Sayfalar" @@ -15339,11 +15132,11 @@ msgstr "" msgid "Show this page" msgstr "Bu sayfayı göster" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "Sayfayı göster/gizle" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "Bu sayfa yeniden sıralanamaz" @@ -15418,7 +15211,6 @@ msgstr "" "ve özel yapım sayfalar izlemektedir." #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "kipi kapat" @@ -15461,7 +15253,7 @@ msgstr "" msgid "Back to dashboard" msgstr "Kontrol paneline geri dön" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "Kursu Dışa Aktar" @@ -15592,8 +15384,7 @@ msgstr "" msgid "Export Course to Git" msgstr "Dersi Git'e Aktar" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "Git'e Aktar" @@ -15641,13 +15432,11 @@ msgstr "Dersiniz:" msgid "Course git url:" msgstr "Dersin git url'si:" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15670,10 +15459,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15722,8 +15516,8 @@ msgid "Course Team" msgstr "Ders Takımı" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" @@ -15745,7 +15539,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15792,7 +15586,6 @@ msgstr "" "Öğrencilerinize bölümleri eklemeli olarak oluşturun ve " "sunun. Bütün bölümleri bir anda vermek zorunda değilsiniz." -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "Öğrenmek Sadece Derslerden İbaret Değildir." @@ -15836,7 +15629,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15945,7 +15738,7 @@ msgstr "" "Öğrenciler bu bileşene ulaşamayacaklar. Hatayı düzeltmek için bileşeninizi " "yeniden düzenleyiniz." -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Kursu İçe Aktarma" @@ -16099,8 +15892,7 @@ msgstr "" "bileşenlerine bağlı veriyi kaybedebilirsiniz. Bu veriler arasında " "öğrencilerin problem notları bulunmaktadır. " -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -16116,7 +15908,7 @@ msgstr "" msgid "Email staff to create course" msgstr "Personele dersiyaratmaları için e-posta at" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "Lütfen aşağıda gösterilen alanları düzeltin." @@ -16159,7 +15951,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "Kuruluşunuz içinde dersinizi ifade eden özgün numaradır." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -16171,7 +15963,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "Dersinizin yürütüleceği dönem." -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "Oluştur" @@ -16202,7 +15994,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -16232,7 +16024,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "Süren Ders:" @@ -16277,7 +16069,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "İlk Dersinizi Yaratın" @@ -16298,7 +16090,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "Ders Yaratıcısının İstek Durumu:" @@ -16306,7 +16098,7 @@ msgstr "Ders Yaratıcısının İstek Durumu:" msgid "Request the Ability to Create Courses" msgstr "Ders Oluşturma Yetkisi Almayı Talep Et" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "Ders Yaratıcısının Talep Durumu" @@ -16318,7 +16110,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "Ders yaratıcısının isteği:" @@ -16370,7 +16162,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16378,7 +16170,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16444,7 +16236,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16498,7 +16290,7 @@ msgstr "" msgid "Sign In" msgstr "Giriş" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16556,13 +16348,11 @@ msgstr "" msgid "Add User" msgstr "Kullanıcı Ekle" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "Mevcut Rol:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "Sen!" @@ -16816,7 +16606,6 @@ msgstr "Temel Bilgiler" msgid "The nuts and bolts of your course" msgstr "Dersinizin ayrıntıları" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "Bölüm kapalı: bu bilgi değiştirilemez." @@ -16875,8 +16664,7 @@ msgstr "Dersin başlayacağı ilk gün" msgid "Course Start Time" msgstr "Ders Başlangıç Saati" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16963,7 +16751,6 @@ msgstr "" "%s da kullanılan başlangıç, ön gereklilikler, sıklıklar sorulan sorular " "(HTML olarak formatlanmış)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Ders imgesi" @@ -17217,7 +17004,6 @@ msgstr "" "her bir görevin öğrencinin notuna ne kadar katkıda bulunacağını " "belirleyebilirsiniz." -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "Genişlet veya Daralt" @@ -17275,8 +17061,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17460,7 +17245,7 @@ msgstr "Bizimle İletişime Geçin" msgid "Current Course:" msgstr "Mevcut Ders:" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17500,7 +17285,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "Yardım & Hesap Navigasyonu" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17520,12 +17305,10 @@ msgstr "Henüz giriş yapmadınız" msgid "Launch Latex Source Compiler" msgstr "Latex Kaynak Derleyicisini Başlat" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "Başlık 1" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "Açıklama" @@ -17550,7 +17333,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17566,7 +17349,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17615,11 +17398,11 @@ msgstr "" "Bu sadece makalenizin ilk içeriğidir. Oluşturduktan sonra, eklentiler, meta " "veri, ilgili makaleler gibi daha karmaiık özellikleri kullanabilirsiniz." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "İçerikler" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Not özeti" @@ -17999,11 +17782,11 @@ msgstr "ek revizyonları" msgid "%s was successfully added." msgstr "%s başarıyla eklendi." -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "Dosyanız kaydedilemedi: %s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo index 27c66e1966..b33129a71b 100644 Binary files a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo and b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po index c502f6bb0c..3d58c72573 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po +++ b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po @@ -34,6 +34,7 @@ # Kerim Kaan , 2013 # msare , 2014 # Onur Bektas , 2013 +# serd@r , 2015 # umit.dogan , 2014 # ElektrikAkar , 2014 # #-#-#-#-# underscore.po (edx-platform) #-#-#-#-# @@ -54,8 +55,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-23 01:20+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/edx-platform/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -68,7 +69,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -97,8 +97,6 @@ msgstr "Bu link yeni tarayıcı sekmesinde açılacak" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -106,17 +104,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -205,7 +200,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "(%(num_points)s puan mümkün)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Yanıt:" @@ -213,7 +207,6 @@ msgstr "Yanıt:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Yanıtı Gizle:" @@ -234,7 +227,6 @@ msgstr "Gizlenmiş yanıt:" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "Cevaplanmamış" @@ -253,7 +245,6 @@ msgstr "Teslim etmeden önce bir reyting seçmelisiniz." #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" "Skorunuz bir sonraki aşamaya gitmek için gerekli kriteri sağlamamaktadır." @@ -326,11 +317,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Soruyu Göster" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Soruyu Gizle" @@ -338,7 +327,6 @@ msgstr "Soruyu Gizle" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -349,21 +337,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1232,7 +1217,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1246,7 +1230,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1583,18 +1566,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1712,7 +1691,6 @@ msgstr "HD açık" msgid "HD off" msgstr "HD kapalı" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Video pozisyonu" @@ -1756,7 +1734,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Tartışmayı Gizle" @@ -1766,13 +1743,9 @@ msgid "Show Discussion" msgstr "Tartışmayı Göster" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1807,8 +1780,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "Talebinizi işlerken sorun yaşadık. Lütfen tekrar deneyin." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2098,12 +2069,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2143,7 +2112,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2152,32 +2120,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2280,7 +2242,6 @@ msgstr "Kullanıcı adı" msgid "Email" msgstr "E-posta" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "Erişimi yetkisini geri ver" @@ -2293,7 +2254,6 @@ msgstr "Kullanıcı adı veya e-posta giriniz" msgid "Please enter a username or email." msgstr "Lütfen kullanıcı adı veya e-posta adresi girin." -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "Kullanıcının izinlerini değiştirirken hata." @@ -2509,7 +2469,6 @@ msgstr "" msgid "Error sending email." msgstr "E-posta gönderiminde hata." -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "Bu ders için e-posta geçmişi bulunmuyor." @@ -2522,10 +2481,6 @@ msgstr "Bu ders için e-posta görev geçmişini elde edilmesinde hata olmuş." msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "Lütfen öğrenci e-posta adresini veya kullanıcı adını giriniz." @@ -2536,12 +2491,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2812,7 +2761,6 @@ msgstr "Sistem geçersiz duruma girdi: <%= state %>" msgid "System got into invalid state for submission: " msgstr "Sistem yükleme için gerçersiz duruma girdi:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(Gizle)" @@ -2906,7 +2854,7 @@ msgstr "imge tanımını buraya giriniz." msgid "enter link description here" msgstr "link tanımını buraya giriniz." -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "kodu buraya giriniz" @@ -2976,6 +2924,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2997,7 +2949,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -3005,7 +2957,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3173,6 +3125,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3219,18 +3179,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3239,7 +3187,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "Veri alınamadı, lütfen tekrar deneyin." @@ -3276,7 +3223,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "Studio yaptığınız işi saklama konusunda zorluk yaşıyor." -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3287,7 +3234,6 @@ msgstr "Studio yaptığınız işi saklama konusunda zorluk yaşıyor." #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Kaydediliyor" @@ -3386,8 +3332,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3599,7 +3545,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "İzin verilen süre HH:MM formatında yazılmalıdır." #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3659,8 +3604,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3700,17 +3673,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3719,11 +3681,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3798,8 +3755,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3903,7 +3859,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3942,7 +3897,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3970,7 +3924,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4093,14 +4046,9 @@ msgstr "" msgid "Upload translation" msgstr "Çeviriyi yükle" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4209,7 +4157,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4377,7 +4324,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4435,6 +4381,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4606,6 +4556,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4884,7 +4842,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4952,6 +4909,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4962,10 +4933,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4991,12 +4970,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5096,7 +5073,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5167,10 +5143,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5303,7 +5275,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5382,7 +5353,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5436,7 +5406,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5556,15 +5525,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5574,11 +5537,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5594,7 +5554,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5619,8 +5578,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5647,8 +5604,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/uk/LC_MESSAGES/django.mo b/conf/locale/uk/LC_MESSAGES/django.mo index 9bec74e480..1b086a0cba 100644 Binary files a/conf/locale/uk/LC_MESSAGES/django.mo and b/conf/locale/uk/LC_MESSAGES/django.mo differ diff --git a/conf/locale/uk/LC_MESSAGES/django.po b/conf/locale/uk/LC_MESSAGES/django.po index 696a873fb1..2a6771e8ea 100644 --- a/conf/locale/uk/LC_MESSAGES/django.po +++ b/conf/locale/uk/LC_MESSAGES/django.po @@ -73,7 +73,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: IvanPrimachenko \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" @@ -104,7 +104,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -112,7 +112,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -124,7 +123,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -151,15 +149,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -253,6 +247,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -273,7 +343,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -330,6 +400,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -440,102 +517,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -598,7 +579,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -1033,7 +1014,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1046,7 +1027,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1085,7 +1066,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1093,7 +1074,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1132,13 +1113,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1170,17 +1149,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1223,7 +1200,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1379,7 +1355,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1411,7 +1386,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1463,7 +1437,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1492,7 +1465,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1633,8 +1605,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2151,12 +2121,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2275,9 +2239,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2515,7 +2476,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2591,8 +2551,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3173,7 +3131,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3425,7 +3383,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3568,7 +3525,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3616,7 +3572,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3654,7 +3609,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3951,19 +3905,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4072,6 +4022,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4120,7 +4086,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4180,7 +4145,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4245,12 +4210,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4313,9 +4277,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4349,7 +4312,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4383,22 +4346,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4407,7 +4358,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4508,12 +4458,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4627,18 +4574,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4669,7 +4612,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4783,7 +4725,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4850,8 +4791,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4905,7 +4846,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4964,7 +4904,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5213,7 +5152,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5263,7 +5201,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5353,8 +5291,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5450,7 +5387,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5480,14 +5416,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5580,7 +5513,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5617,7 +5550,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5747,7 +5679,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6094,7 +6025,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6200,7 +6130,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6382,7 +6311,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6435,12 +6363,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6460,10 +6385,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6500,7 +6422,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6512,11 +6434,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6538,7 +6460,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6766,12 +6688,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6781,21 +6700,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6870,8 +6781,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6883,12 +6792,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6898,11 +6805,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -7014,7 +6919,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7044,7 +6948,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7260,8 +7168,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7273,13 +7180,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7299,7 +7201,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7308,13 +7210,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7329,10 +7229,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7342,7 +7240,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7374,14 +7272,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7395,7 +7292,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7422,13 +7319,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7449,7 +7344,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7532,7 +7426,7 @@ msgstr "" msgid "Dashboard" msgstr "Панель курсів" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7576,7 +7470,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7584,7 +7478,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7618,7 +7512,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7669,15 +7563,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7741,7 +7626,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7778,7 +7663,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7821,13 +7706,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7849,31 +7732,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7890,7 +7773,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7906,7 +7788,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7933,7 +7814,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7993,8 +7874,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8132,7 +8011,7 @@ msgstr[2] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8313,7 +8192,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8334,17 +8213,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8364,13 +8241,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8388,7 +8263,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8453,7 +8328,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8464,7 +8338,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8585,11 +8458,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8640,12 +8513,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8654,15 +8527,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8763,7 +8636,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8819,7 +8692,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8897,6 +8769,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8911,6 +8795,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9048,7 +8937,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9064,7 +8953,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9405,8 +9293,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9464,12 +9350,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9523,6 +9407,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9599,7 +9494,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9635,11 +9530,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9647,7 +9542,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9701,7 +9595,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9732,7 +9625,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9746,7 +9638,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9781,7 +9672,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9826,7 +9716,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9917,7 +9806,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -10004,7 +9892,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10070,7 +9968,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10079,21 +9976,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10112,11 +9994,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10125,11 +10021,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10150,7 +10041,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10160,7 +10050,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10220,7 +10109,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10274,44 +10162,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10327,7 +10204,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10369,7 +10245,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10567,9 +10442,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10581,7 +10454,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10602,7 +10474,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10767,7 +10638,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10786,7 +10656,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10901,7 +10770,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11625,8 +11493,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11686,12 +11552,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11829,7 +11693,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11977,7 +11840,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12042,7 +11904,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12072,24 +11933,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12157,7 +12010,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12271,7 +12123,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12284,7 +12135,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12296,12 +12146,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12323,22 +12171,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12520,7 +12362,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12555,12 +12396,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12573,12 +12412,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12659,7 +12496,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12698,19 +12534,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13052,7 +12885,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13074,7 +12906,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13260,15 +13091,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13375,7 +13201,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13401,19 +13226,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13468,12 +13290,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13486,14 +13306,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13765,7 +13582,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13773,19 +13589,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13806,7 +13619,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13817,19 +13629,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13847,7 +13656,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13920,7 +13728,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13936,15 +13743,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14168,7 +13970,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14181,7 +13982,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14237,7 +14037,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14252,9 +14051,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14355,8 +14151,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14376,8 +14171,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14447,7 +14241,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14482,7 +14276,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14495,7 +14288,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14618,7 +14411,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14628,7 +14421,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14638,8 +14430,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14714,7 +14504,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14729,7 +14519,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14784,7 +14573,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14843,8 +14632,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14863,11 +14652,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14931,7 +14720,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14973,7 +14761,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15101,8 +14889,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15146,13 +14933,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15175,10 +14960,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15227,8 +15017,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15250,7 +15040,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15295,7 +15085,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15337,7 +15126,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15438,7 +15227,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15569,8 +15358,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15586,7 +15374,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15625,7 +15413,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15635,7 +15423,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15666,7 +15454,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15696,7 +15484,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15741,7 +15529,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15762,7 +15550,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15770,7 +15558,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15782,7 +15570,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15834,7 +15622,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15842,7 +15630,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15902,7 +15690,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15956,7 +15744,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16009,13 +15797,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16254,7 +16040,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16313,8 +16098,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16397,7 +16181,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16623,7 +16406,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16675,8 +16457,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16856,7 +16637,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16896,7 +16677,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16916,12 +16697,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16946,7 +16725,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16962,7 +16741,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17009,11 +16788,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17367,11 +17146,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.mo b/conf/locale/uk/LC_MESSAGES/djangojs.mo index 087501ca6c..e6202b8b10 100644 Binary files a/conf/locale/uk/LC_MESSAGES/djangojs.mo and b/conf/locale/uk/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.po b/conf/locale/uk/LC_MESSAGES/djangojs.po index 03b3938842..604e0a6239 100644 --- a/conf/locale/uk/LC_MESSAGES/djangojs.po +++ b/conf/locale/uk/LC_MESSAGES/djangojs.po @@ -53,8 +53,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -107,8 +106,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -116,17 +113,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -221,7 +215,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -229,7 +222,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -250,7 +242,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -269,7 +260,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -333,11 +323,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -345,7 +333,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -356,21 +343,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1241,7 +1225,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1255,7 +1238,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1592,18 +1574,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1721,7 +1699,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1771,7 +1748,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1781,13 +1757,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1817,8 +1789,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2131,12 +2101,10 @@ msgstr[2] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2178,7 +2146,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2187,32 +2154,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2313,7 +2274,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2326,7 +2286,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2514,7 +2473,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2527,10 +2485,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2541,12 +2495,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2800,7 +2748,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2894,7 +2841,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2964,6 +2911,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2985,7 +2936,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2993,7 +2944,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3171,6 +3122,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3217,18 +3176,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3237,7 +3184,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3277,7 +3223,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3288,7 +3234,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3387,8 +3332,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3597,7 +3542,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3655,8 +3599,38 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3698,19 +3672,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3719,11 +3680,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3798,8 +3754,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3904,7 +3859,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3943,7 +3897,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3971,7 +3924,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4086,14 +4038,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4204,7 +4151,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4372,7 +4318,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4430,6 +4375,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4601,6 +4550,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4879,7 +4836,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4947,6 +4903,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4957,10 +4927,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4986,12 +4964,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5091,7 +5067,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5162,10 +5137,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5298,7 +5269,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5377,7 +5347,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5431,7 +5400,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5551,15 +5519,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5569,11 +5531,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5589,7 +5548,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5614,8 +5572,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5642,8 +5598,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/ur/LC_MESSAGES/django.mo b/conf/locale/ur/LC_MESSAGES/django.mo index 374588d5eb..e54d0ada15 100644 Binary files a/conf/locale/ur/LC_MESSAGES/django.mo and b/conf/locale/ur/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ur/LC_MESSAGES/django.po b/conf/locale/ur/LC_MESSAGES/django.po index 3b9f3e6a24..5a8e4d692f 100644 --- a/conf/locale/ur/LC_MESSAGES/django.po +++ b/conf/locale/ur/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-04-07 13:46+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/)\n" @@ -70,7 +70,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -78,7 +78,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -90,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -117,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -219,6 +213,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -239,7 +309,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -296,6 +366,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -406,102 +483,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -562,7 +543,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -996,7 +977,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1009,7 +990,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1048,7 +1029,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1056,7 +1037,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1095,13 +1076,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1133,17 +1112,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1186,7 +1163,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1342,7 +1318,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1374,7 +1349,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1426,7 +1400,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1455,7 +1428,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1596,8 +1568,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2114,12 +2084,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2238,9 +2202,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2478,7 +2439,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2554,8 +2514,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3134,7 +3092,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3386,7 +3344,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3529,7 +3486,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3577,7 +3533,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3615,7 +3570,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3912,19 +3866,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4032,6 +3982,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4080,7 +4046,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4140,7 +4105,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4205,12 +4170,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4273,9 +4237,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4309,7 +4272,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4343,22 +4306,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4367,7 +4318,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4468,12 +4418,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4587,18 +4534,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4629,7 +4572,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4741,7 +4683,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4808,8 +4749,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4863,7 +4804,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4922,7 +4862,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5171,7 +5110,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5221,7 +5159,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5311,8 +5249,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5408,7 +5345,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5438,14 +5374,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5538,7 +5471,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5575,7 +5508,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5705,7 +5637,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6052,7 +5983,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6158,7 +6088,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6340,7 +6269,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6393,12 +6321,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6418,10 +6343,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6458,7 +6380,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6470,11 +6392,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6496,7 +6418,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6724,12 +6646,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6739,21 +6658,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6831,8 +6742,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6844,12 +6753,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6859,11 +6766,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6975,7 +6880,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7005,7 +6909,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7221,8 +7129,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7234,13 +7141,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7260,7 +7162,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7269,13 +7171,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7290,10 +7190,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7303,7 +7201,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7335,14 +7233,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7356,7 +7253,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7383,13 +7280,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7410,7 +7305,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7493,7 +7387,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7537,7 +7431,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7545,7 +7439,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7579,7 +7473,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7630,15 +7524,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7702,7 +7587,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7739,7 +7624,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7782,13 +7667,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7810,31 +7693,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7851,7 +7734,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7867,7 +7749,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7894,7 +7775,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7954,8 +7835,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8092,7 +7971,7 @@ msgstr[1] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8273,7 +8152,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8294,17 +8173,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8324,13 +8201,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8348,7 +8223,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8413,7 +8288,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8424,7 +8298,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8545,11 +8418,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8600,12 +8473,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8614,15 +8487,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8723,7 +8596,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8779,7 +8652,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8857,6 +8729,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8871,6 +8755,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9008,7 +8897,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9024,7 +8913,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9363,8 +9251,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9422,12 +9308,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9481,6 +9365,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9557,7 +9452,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9593,11 +9488,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9605,7 +9500,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9659,7 +9553,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9690,7 +9583,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9704,7 +9596,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9739,7 +9630,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9784,7 +9674,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9875,7 +9764,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9962,7 +9850,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10028,7 +9926,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10037,21 +9934,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10070,11 +9952,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10083,11 +9979,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10108,7 +9999,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10118,7 +10008,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10177,7 +10066,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10231,44 +10119,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10284,7 +10161,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10326,7 +10202,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10524,9 +10399,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10538,7 +10411,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10559,7 +10431,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10724,7 +10595,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10743,7 +10613,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10856,7 +10725,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11580,8 +11448,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11641,12 +11507,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11784,7 +11648,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11932,7 +11795,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11997,7 +11859,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12027,24 +11888,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12112,7 +11965,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12226,7 +12078,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12239,7 +12090,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12251,12 +12101,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12278,22 +12126,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12475,7 +12317,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12510,12 +12351,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12528,12 +12367,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12614,7 +12451,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12653,19 +12489,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13007,7 +12840,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13029,7 +12861,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13214,15 +13045,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13329,7 +13155,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13355,19 +13180,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13422,12 +13244,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13440,14 +13260,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13719,7 +13536,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13727,19 +13543,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13760,7 +13573,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13771,19 +13583,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13801,7 +13610,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13874,7 +13682,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13890,15 +13697,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14122,7 +13924,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14135,7 +13936,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14191,7 +13991,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14206,9 +14005,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14309,8 +14105,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14330,8 +14125,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14401,7 +14195,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14436,7 +14230,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14449,7 +14242,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14572,7 +14365,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14582,7 +14375,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14592,8 +14384,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14668,7 +14458,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14683,7 +14473,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14738,7 +14527,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14797,8 +14586,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14817,11 +14606,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14885,7 +14674,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14927,7 +14715,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15055,8 +14843,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15100,13 +14887,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15129,10 +14914,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15181,8 +14971,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15204,7 +14994,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15249,7 +15039,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15291,7 +15080,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15392,7 +15181,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15523,8 +15312,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15540,7 +15328,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15579,7 +15367,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15589,7 +15377,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15620,7 +15408,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15650,7 +15438,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15695,7 +15483,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15716,7 +15504,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15724,7 +15512,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15736,7 +15524,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15788,7 +15576,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15796,7 +15584,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15856,7 +15644,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15910,7 +15698,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15963,13 +15751,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16208,7 +15994,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16267,8 +16052,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16351,7 +16135,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16577,7 +16360,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16629,8 +16411,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16810,7 +16591,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16850,7 +16631,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16870,12 +16651,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16900,7 +16679,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16916,7 +16695,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16963,11 +16742,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17321,11 +17100,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/ur/LC_MESSAGES/djangojs.mo b/conf/locale/ur/LC_MESSAGES/djangojs.mo index c3bc32965a..15c54bc78b 100644 Binary files a/conf/locale/ur/LC_MESSAGES/djangojs.mo and b/conf/locale/ur/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ur/LC_MESSAGES/djangojs.po b/conf/locale/ur/LC_MESSAGES/djangojs.po index 882fc0c9c0..49645bbd17 100644 --- a/conf/locale/ur/LC_MESSAGES/djangojs.po +++ b/conf/locale/ur/LC_MESSAGES/djangojs.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -83,8 +82,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -92,17 +89,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -195,7 +189,6 @@ msgid_plural "(%(num_points)s points possible)" msgstr[0] "" msgstr[1] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -203,7 +196,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -224,7 +216,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -243,7 +234,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -307,11 +297,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -319,7 +307,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -330,21 +317,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1215,7 +1199,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1229,7 +1212,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1566,18 +1548,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1695,7 +1673,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1742,7 +1719,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1752,13 +1728,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1788,8 +1760,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2089,12 +2059,10 @@ msgstr[1] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2135,7 +2103,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2144,32 +2111,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2270,7 +2231,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2283,7 +2243,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2471,7 +2430,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2484,10 +2442,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2498,12 +2452,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2757,7 +2705,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2851,7 +2798,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2921,6 +2868,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2942,7 +2893,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2950,7 +2901,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3123,6 +3074,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3169,18 +3128,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3189,7 +3136,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3226,7 +3172,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3237,7 +3183,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3336,8 +3281,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3546,7 +3491,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3604,8 +3548,37 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" +msgstr[1] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3646,18 +3619,6 @@ msgid_plural "Contains %(count)s groups" msgstr[0] "" msgstr[1] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" -msgstr[1] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3666,11 +3627,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3745,8 +3701,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3851,7 +3806,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3890,7 +3844,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3918,7 +3871,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4033,14 +3985,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4150,7 +4097,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4318,7 +4264,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4376,6 +4321,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4547,6 +4496,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4825,7 +4782,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4893,6 +4849,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4903,10 +4873,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4932,12 +4910,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5037,7 +5013,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5108,10 +5083,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5244,7 +5215,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5323,7 +5293,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5377,7 +5346,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5497,15 +5465,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5515,11 +5477,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5535,7 +5494,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5560,8 +5518,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5588,8 +5544,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/uz/LC_MESSAGES/django.mo b/conf/locale/uz/LC_MESSAGES/django.mo index 2941910207..14c2b9f7f2 100644 Binary files a/conf/locale/uz/LC_MESSAGES/django.mo and b/conf/locale/uz/LC_MESSAGES/django.mo differ diff --git a/conf/locale/uz/LC_MESSAGES/django.po b/conf/locale/uz/LC_MESSAGES/django.po index 0d6e705745..c39799344d 100644 --- a/conf/locale/uz/LC_MESSAGES/django.po +++ b/conf/locale/uz/LC_MESSAGES/django.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-07-23 19:41+0000\n" "Last-Translator: Hamza Foziljonov \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/edx-platform/language/uz/)\n" @@ -70,7 +70,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -78,7 +78,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -90,7 +89,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -117,15 +115,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -219,6 +213,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -239,7 +309,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -296,6 +366,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -406,102 +483,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -560,7 +541,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -993,7 +974,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1006,7 +987,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1045,7 +1026,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1053,7 +1034,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1092,13 +1073,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1130,17 +1109,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1183,7 +1160,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1339,7 +1315,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1371,7 +1346,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1423,7 +1397,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1452,7 +1425,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1593,8 +1565,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2111,12 +2081,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2235,9 +2199,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2475,7 +2436,6 @@ msgstr "" #: common/lib/xmodule/xmodule/course_module.py #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "" @@ -2551,8 +2511,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3129,7 +3087,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3381,7 +3339,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3524,7 +3481,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3572,7 +3528,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3610,7 +3565,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3907,19 +3861,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4026,6 +3976,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4074,7 +4040,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4134,7 +4099,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4199,12 +4164,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4267,9 +4231,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4303,7 +4266,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4337,22 +4300,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4361,7 +4312,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4462,12 +4412,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "" @@ -4581,18 +4528,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4623,7 +4566,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4733,7 +4675,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4800,8 +4741,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4855,7 +4796,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4914,7 +4854,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5163,7 +5102,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5213,7 +5151,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5303,8 +5241,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5400,7 +5337,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5430,14 +5366,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5530,7 +5463,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5567,7 +5500,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5697,7 +5629,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6044,7 +5975,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6150,7 +6080,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6332,7 +6261,6 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "" @@ -6385,12 +6313,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6410,10 +6335,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6450,7 +6372,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6462,11 +6384,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6488,7 +6410,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6716,12 +6638,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6731,21 +6650,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6823,8 +6734,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6836,12 +6745,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6851,11 +6758,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6967,7 +6872,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6997,7 +6901,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7213,8 +7121,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7226,13 +7133,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7252,7 +7154,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7261,13 +7163,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7282,10 +7182,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -7295,7 +7193,7 @@ msgstr "" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7327,14 +7225,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7348,7 +7245,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7375,13 +7272,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7402,7 +7297,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7485,7 +7379,7 @@ msgstr "" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" @@ -7529,7 +7423,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7537,7 +7431,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7571,7 +7465,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "" @@ -7622,15 +7516,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7694,7 +7579,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7731,7 +7616,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7774,13 +7659,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "" @@ -7802,31 +7685,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7843,7 +7726,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "" @@ -7859,7 +7741,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7886,7 +7767,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7946,8 +7827,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8083,7 +7962,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8264,7 +8143,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8285,17 +8164,15 @@ msgstr "" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8315,13 +8192,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8339,7 +8214,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8404,7 +8279,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8415,7 +8289,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8536,11 +8409,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8591,12 +8464,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8605,15 +8478,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8714,7 +8587,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8770,7 +8643,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8848,6 +8720,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8862,6 +8746,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8999,7 +8888,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9015,7 +8904,6 @@ msgstr "" msgid "Total number of words:" msgstr "" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9352,8 +9240,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9411,12 +9297,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9470,6 +9354,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9546,7 +9441,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9582,11 +9477,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9594,7 +9489,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9648,7 +9542,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9679,7 +9572,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9693,7 +9585,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9728,7 +9619,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9773,7 +9663,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9864,7 +9753,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9951,7 +9839,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10017,7 +9915,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10026,21 +9923,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10059,11 +9941,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10072,11 +9968,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10097,7 +9988,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10107,7 +9997,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10165,7 +10054,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10219,44 +10107,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10272,7 +10149,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10314,7 +10190,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10512,9 +10387,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10526,7 +10399,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10547,7 +10419,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10712,7 +10583,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10731,7 +10601,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10842,7 +10711,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11566,8 +11434,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11627,12 +11493,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11770,7 +11634,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11918,7 +11781,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11983,7 +11845,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12013,24 +11874,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12098,7 +11951,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12212,7 +12064,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12225,7 +12076,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12237,12 +12087,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12264,22 +12112,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12461,7 +12303,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12496,12 +12337,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12514,12 +12353,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12600,7 +12437,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12639,19 +12475,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12993,7 +12826,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13015,7 +12847,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13199,15 +13030,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13314,7 +13140,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13340,19 +13165,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13407,12 +13229,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13425,14 +13245,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13704,7 +13521,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13712,19 +13528,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13745,7 +13558,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13756,19 +13568,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13786,7 +13595,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13859,7 +13667,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13875,15 +13682,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14107,7 +13909,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14120,7 +13921,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14176,7 +13976,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14191,9 +13990,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14294,8 +14090,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14315,8 +14110,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14386,7 +14180,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14421,7 +14215,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14434,7 +14227,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14557,7 +14350,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14567,7 +14360,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14577,8 +14369,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14653,7 +14443,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14668,7 +14458,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14723,7 +14512,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14782,8 +14571,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14802,11 +14591,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14870,7 +14659,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14912,7 +14700,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15040,8 +14828,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15085,13 +14872,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15114,10 +14899,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15166,8 +14956,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15189,7 +14979,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15234,7 +15024,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15276,7 +15065,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15377,7 +15166,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15508,8 +15297,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15525,7 +15313,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15564,7 +15352,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15574,7 +15362,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15605,7 +15393,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15635,7 +15423,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15680,7 +15468,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15701,7 +15489,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15709,7 +15497,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15721,7 +15509,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15773,7 +15561,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15781,7 +15569,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15841,7 +15629,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15895,7 +15683,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15948,13 +15736,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16193,7 +15979,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16252,8 +16037,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16336,7 +16120,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16562,7 +16345,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16614,8 +16396,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16795,7 +16576,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16835,7 +16616,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16855,12 +16636,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16885,7 +16664,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16901,7 +16680,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16948,11 +16727,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17306,11 +17085,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/uz/LC_MESSAGES/djangojs.mo b/conf/locale/uz/LC_MESSAGES/djangojs.mo index d37c53adf1..71590be2e0 100644 Binary files a/conf/locale/uz/LC_MESSAGES/djangojs.mo and b/conf/locale/uz/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/uz/LC_MESSAGES/djangojs.po b/conf/locale/uz/LC_MESSAGES/djangojs.po index c46dd8ecf2..af07457838 100644 --- a/conf/locale/uz/LC_MESSAGES/djangojs.po +++ b/conf/locale/uz/LC_MESSAGES/djangojs.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/edx-platform/language/uz/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -81,8 +80,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -90,17 +87,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -191,7 +185,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -199,7 +192,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -220,7 +212,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -239,7 +230,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -303,11 +293,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -315,7 +303,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -326,21 +313,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1211,7 +1195,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1225,7 +1208,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1562,18 +1544,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1691,7 +1669,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1735,7 +1712,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1745,13 +1721,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1781,8 +1753,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2069,12 +2039,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2114,7 +2082,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2123,32 +2090,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2249,7 +2210,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2262,7 +2222,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2450,7 +2409,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2463,10 +2421,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2477,12 +2431,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2736,7 +2684,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2830,7 +2777,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2900,6 +2847,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2921,7 +2872,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2929,7 +2880,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3097,6 +3048,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3143,18 +3102,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3163,7 +3110,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3197,7 +3143,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3208,7 +3154,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3307,8 +3252,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3517,7 +3462,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3575,8 +3519,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3616,17 +3588,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3635,11 +3596,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3714,8 +3670,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3820,7 +3775,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3859,7 +3813,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3887,7 +3840,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4002,14 +3954,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4118,7 +4065,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4286,7 +4232,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4344,6 +4289,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4515,6 +4464,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4793,7 +4750,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4861,6 +4817,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4871,10 +4841,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4900,12 +4878,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5005,7 +4981,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5076,10 +5051,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5212,7 +5183,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5291,7 +5261,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5345,7 +5314,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5465,15 +5433,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5483,11 +5445,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5503,7 +5462,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5528,8 +5486,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5556,8 +5512,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/vi/LC_MESSAGES/django.mo b/conf/locale/vi/LC_MESSAGES/django.mo index a2c3650c63..39a1c3d5dd 100644 Binary files a/conf/locale/vi/LC_MESSAGES/django.mo and b/conf/locale/vi/LC_MESSAGES/django.mo differ diff --git a/conf/locale/vi/LC_MESSAGES/django.po b/conf/locale/vi/LC_MESSAGES/django.po index 8562f5bf3c..d754ce14b3 100644 --- a/conf/locale/vi/LC_MESSAGES/django.po +++ b/conf/locale/vi/LC_MESSAGES/django.po @@ -140,7 +140,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-15 01:30+0000\n" "Last-Translator: Nguyen Quang Huy \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" @@ -168,14 +168,13 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "Thảo Luận" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html #, fuzzy msgid "Problem" @@ -192,7 +191,6 @@ msgstr "Nâng cao" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -217,15 +215,11 @@ msgstr "Hoàn tất" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "Tên" @@ -322,6 +316,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "Tên đăng nhập chỉ nên bao gồm A-Z và 0-9, không có khoảng trống." + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "Bạn phải chấp thuận các điều khoản sử dụng dịch vụ." + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "Để ghi danh, bạn phải tuân thủ cam kết danh dự." + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -342,7 +412,7 @@ msgstr "Nữ" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "Lựa chọn khác" @@ -399,6 +469,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -520,102 +597,6 @@ msgstr "Một tài khoản với Tên Đăng Nhập Công Khai '{username}' đã msgid "An account with the Email '{email}' already exists." msgstr "Một tài khoản với Email '{email}' đã tồn tại." -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "Lỗi (401 {field}). Hãy gởi email cho chúng tôi." - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "Để ghi danh, bạn phải tuân thủ cam kết danh dự." - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "Bạn phải chấp thuận các điều khoản sử dụng dịch vụ." - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "Yêu cầu chấp thuận Cam Kết Danh Dự" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "Yêu cầu e-mail hợp lệ." - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "Tên đăng nhập chỉ nên bao gồm A-Z và 0-9, không có khoảng trống." - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "Không thể gửi email kích hoạt." - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -676,7 +657,7 @@ msgstr "" msgid "Name required" msgstr "Yêu cầu tên" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "Mã số không hợp lệ" @@ -1109,7 +1090,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "chưa trả lời" @@ -1122,7 +1103,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "ChoiceGroup: tag bất ngờ {tag_name}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1165,7 +1146,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1173,7 +1154,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1212,13 +1193,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1250,17 +1229,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1303,7 +1280,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1459,7 +1435,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1491,7 +1466,6 @@ msgstr "Chú thích" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1543,7 +1517,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "Luôn Luôn" @@ -1572,7 +1545,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "Không Bao Giờ" @@ -1713,8 +1685,6 @@ msgstr "Nếu vẫn còn lỗi này, vui lòng liên hệ nhân viên phụ trá #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "Hết hạn trả lời câu hỏi này." @@ -2236,12 +2206,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2362,9 +2326,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2601,7 +2562,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "Về edX" @@ -2677,8 +2637,6 @@ msgstr "" msgid "Text" msgstr "Chữ" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3263,7 +3221,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "Giáo Trình" @@ -3515,7 +3473,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3658,7 +3615,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3706,7 +3662,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3744,7 +3699,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -4049,15 +4003,12 @@ msgstr "Tìm kiếm" msgid "Copyright" msgstr "Bản quyền" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "Tên đăng nhập" @@ -4162,6 +4113,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "Thành viên {username} chưa bao giờ truy cập câu hỏi {location}" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "LỖI: Không tìm thấy nguồn video có thể phát được!" @@ -4270,7 +4237,7 @@ msgstr "mật khẩu cố định" msgid "All ok!" msgstr "Tất cả đã ok!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "Phải cung cấp tên đăng nhập" @@ -4335,12 +4302,11 @@ msgstr "Tổng số thành viên" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "tên đăng nhập" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "Email" @@ -4403,7 +4369,7 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "Tên Khóa Học" @@ -4437,7 +4403,7 @@ msgstr "" msgid "Deleted" msgstr "Đã xóa" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "id_khóa học" @@ -4471,22 +4437,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "Phải có tiêu đề" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "Phải có nội dung" @@ -4495,7 +4449,6 @@ msgstr "Phải có nội dung" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4597,12 +4550,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "Email" @@ -4722,18 +4672,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4764,7 +4710,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4877,7 +4822,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4944,8 +4888,8 @@ msgstr "ID" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html #, fuzzy @@ -5004,7 +4948,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "Gia hạn mới" @@ -5062,7 +5005,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "Không có thông tin về trạng thái" @@ -5322,7 +5264,6 @@ msgstr "Xem các vấn đề kết thúc mở mà bạn đã gửi để chấm msgid "View submissions that have been flagged by students as inappropriate." msgstr "Xem các bài nộp đã được gắn cờ của học viên là không phù hợp." -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "Bài nộp mới để chấm điểm" @@ -5372,7 +5313,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5462,8 +5403,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5554,7 +5494,6 @@ msgstr "Ngày hoàn trả" msgid "Amount of Refund" msgstr "Lượng hoàn trả" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "Phí dịch vụ (nếu có)" @@ -5583,12 +5522,10 @@ msgstr "loại tiền tệ" msgid "Comments" msgstr "Nhận xét" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "Khóa học" @@ -5682,7 +5619,7 @@ msgstr "" msgid "Course added to cart." msgstr "Khoá học được thêm vào giỏ hàng." -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5719,7 +5656,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "Bộ xử lý thanh toán không trả về một tham số yêu cầu: {0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "Bộ xử lý thanh toán trả về một kiểu giá trị tồi {0} cho tham số {1}." @@ -5859,7 +5795,6 @@ msgstr "" "Không đủ tiền trong tài khoản. Khắc phục: thử lại với một hình thức thanh " "toán khác" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "Không rõ lý do" @@ -6214,7 +6149,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6320,7 +6254,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "Đã đặt lại mật khẩu thành công" @@ -6526,7 +6459,6 @@ msgstr "Xóa bài viết" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "Xóa" @@ -6583,12 +6515,9 @@ msgstr "Xem trước" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6613,10 +6542,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "mở cửa sổ" @@ -6657,7 +6583,7 @@ msgstr "Tự động ghi nhật ký:" msgid "Change" msgstr "Thay đổi" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "Gộp các bản được chọn với bản hiện tại..." @@ -6669,11 +6595,11 @@ msgstr "Chuyển về phiên bản đã chọn" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "Quay về trang xem lịch sử" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "Chuyển về phiên bản này" @@ -6698,7 +6624,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "Sau việc này, cần phải thực hiện việc kiểm tra lại một cách thủ công." -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "Tạo bản gộp mới" @@ -6938,30 +6864,20 @@ msgstr "Không thể tạo hai nhóm có cùng một tên." #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "Mật khẩu" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7027,8 +6943,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -7037,23 +6951,19 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "Điều Khoản Sử Dụng Dịch Vụ và Cam Kết Danh Dự" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "Điều khoản sử dụng dịch vụ" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "Mã số cập nhật của khóa học không hợp lệ." @@ -7184,7 +7094,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7218,8 +7127,12 @@ msgid "must have at least one group" msgstr "phải có ít nhất một nhóm" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." -msgstr "Cấu Hình Nhóm này đã được sử dụng và không thể gỡ bỏ." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "" #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" @@ -7430,8 +7343,7 @@ msgstr "Không tìm thấy trang" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7443,13 +7355,8 @@ msgstr "" msgid "close" msgstr "Đóng lại" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7469,7 +7376,7 @@ msgstr "Hủy" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "Thiết lập" @@ -7478,13 +7385,11 @@ msgstr "Thiết lập" msgid "Error:" msgstr "Lỗi:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "Tổ Chức:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7499,10 +7404,8 @@ msgstr "Khóa học" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "E-mail" @@ -7512,7 +7415,7 @@ msgstr "E-mail" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "ví dụ: username@domain.com" @@ -7544,14 +7447,13 @@ msgstr "ví dụ: Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "Tên Đăng Nhập Công Khai" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "ví dụ: JaneDoe" @@ -7565,7 +7467,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "Chi tiết" @@ -7593,13 +7495,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "Chính sách bảo mật" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html msgid "Help" msgstr "Trợ Giúp" @@ -7620,7 +7520,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "Giờ hãy chọn hệ bạn muốn theo học:" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "Theo đuổi Giấy Chứng Nhận Xác Thực" @@ -7711,7 +7610,7 @@ msgstr "Mới" msgid "Dashboard" msgstr "Bảng Điều Khiển" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "chỉnh sửa" @@ -7755,7 +7654,7 @@ msgstr "Kết Nối" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "Đặt Lại Mật Khẩu" @@ -7763,7 +7662,7 @@ msgstr "Đặt Lại Mật Khẩu" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7799,7 +7698,7 @@ msgstr "" "Một email đã được gửi đến {email}. Sử dụng đường link trong email để thay " "đổi mật khẩu của bạn." -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "Thay đổi Email" @@ -7852,15 +7751,6 @@ msgstr "Thay Đổi Tên Của Tôi" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7924,7 +7814,7 @@ msgstr "Các học viên bị từ chối:" msgid "Debug: " msgstr "Sửa lỗi:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "Đăng Nhập Qua Tài Khoản Ngoài thất bại" @@ -7961,7 +7851,7 @@ msgstr "Đã gửi đi" msgid "Puzzle Leaderboard" msgstr "Bảng Thành Tích " -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -8004,13 +7894,11 @@ msgstr "Tin Tức" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "Liên hệ" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "Hỏi Đáp" @@ -8032,31 +7920,31 @@ msgstr "Theo Dõi " #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "Twitter" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "Facebook" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "Meetup" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "LinkedIn" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "Google+" @@ -8073,7 +7961,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "Việc làm" @@ -8089,7 +7976,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "Đặt Lại Mật Khẩu" @@ -8118,7 +8004,7 @@ msgstr "Đặt Lại Mật Khẩu Của Tôi" msgid "Email is incorrect." msgstr "Email không đúng." -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} Trợ giúp" @@ -8186,8 +8072,6 @@ msgstr "Bao gồm các thông báo lỗi, các bước dẫn đến vấn đề #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8329,7 +8213,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "Thông Tin Hữu Ích" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "Đăng nhập qua OpenID" @@ -8529,7 +8413,7 @@ msgstr "Dữ liệu thô:" msgid "Accepted" msgstr "Được chấp thuận" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "Lỗi" @@ -8550,17 +8434,15 @@ msgstr "Xác nhận" msgid "Reject" msgstr "Từ chối" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "Phương Thức Hoạt Động" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "Tìm Khóa Học" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "Các Trường & Đối Tác" @@ -8580,13 +8462,11 @@ msgstr "" msgid "Shopping Cart" msgstr "Giỏ Hàng" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "Đăng ký" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8606,7 +8486,7 @@ msgstr "Định Vị Toàn Cầu" msgid "Schools" msgstr "Trường" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "Đăng Ký Ngay" @@ -8674,7 +8554,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "Các lỗi sau đây xảy ra trong khi xử lý đăng ký của bạn:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8687,7 +8566,6 @@ msgid "Enter a public username:" msgstr "Nhập tên đăng nhập công khai:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "Sẽ được hiển thị trong mọi thảo luận hoặc các diễn đàn bạn tham gia" @@ -8814,11 +8692,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "Vui lòng điền vào những mục sau để đăng ký tài khoản." -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "Cần thiết để ghi vào chứng chỉ của bạn" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "không thể thay đổi sau này" @@ -8869,12 +8747,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "Trước" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "Sau" @@ -8883,15 +8761,15 @@ msgstr "Sau" msgid "Sign Up for {platform_name}" msgstr "Đăng Ký {platform_name}" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "Ví dụ: yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "Ví dụ: tên bạn (hiển thị trên các diễn đàn)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "Ví dụ: Họ Tên (trên giấy chứng nhận)" @@ -8993,7 +8871,7 @@ msgstr "Xoá trạng thái học viên" msgid "Rescore Student Submission" msgstr "Chấm Lại Bài Làm của Học Viên" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "Thông Tin về Các Mô-đun" @@ -9049,7 +8927,6 @@ msgstr "Nhân sự và Học viên ghi danh" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Log Git" @@ -9129,6 +9006,18 @@ msgstr "Xóa khóa học khỏi trang" msgid "Platform Version" msgstr "Bản Plattform" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9143,6 +9032,11 @@ msgstr "Ngày" msgid "Git Action" msgstr "Hoạt động Git" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9295,7 +9189,7 @@ msgstr "Quay lại để mở phụ đề." msgid "Download video" msgstr "Tải video" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "Tải bản dịch" @@ -9311,7 +9205,6 @@ msgstr "Nội dung bạn muốn nhập:" msgid "Total number of words:" msgstr "Tổng số từ:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "Mở Máy Tính " @@ -9650,8 +9543,6 @@ msgstr "{chapter}, chương hiện tại" msgid "due {date}" msgstr "hạn {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9709,12 +9600,10 @@ msgstr "Tổng quan" msgid "Share with friends and family!" msgstr "Chia sẻ với bạn bè và gia đình!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9768,6 +9657,17 @@ msgstr "" msgid "Additional Resources" msgstr "Nguồn Học Liệu Bổ Sung" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9844,7 +9744,7 @@ msgid "No content has been added to this course" msgstr "Chưa có nội dung nào được thêm vào khóa học này." #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9880,11 +9780,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "Xem Cập Nhật trong Studio" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "Cập Nhật Khóa Học & Tin Tức" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "Danh Mục Tài Liệu Phát Kèm" @@ -9892,7 +9792,6 @@ msgstr "Danh Mục Tài Liệu Phát Kèm" msgid "Course Handouts" msgstr "Tài Liệu Phát Kèm Khóa Học" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9946,7 +9845,6 @@ msgstr "Quản Lý Các Nhóm" msgid "Grade Downloads" msgstr "Tải Xuống Điểm" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9979,7 +9877,6 @@ msgstr "" "Để chạy chức năng này, các bài tập dùng cho khóa học này phải phù hợp với " "những bài được lưu trữ trong sổ điểm!" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9993,7 +9890,6 @@ msgstr "Tên bài tập:" msgid "Course-specific grade adjustment" msgstr "Điều chỉnh điểm cho từng khóa học cụ thể" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -10028,7 +9924,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "Nhập các học viên ghi danh về từ sổ điểm ngoài." -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "Mục:" @@ -10073,7 +9968,6 @@ msgstr "Ngày" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "Học viên" @@ -10164,7 +10058,6 @@ msgstr "Thời hạn (giây)" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "chưa biết" @@ -10251,7 +10144,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10320,7 +10223,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "Liên kết này sẽ mở ra/tải về một tài liệu PDF" @@ -10329,21 +10231,6 @@ msgstr "Liên kết này sẽ mở ra/tải về một tài liệu PDF" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10362,11 +10249,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "Hoàn thành khảo sát ý kiến ​​phản hồi về khóa học của chúng tôi" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "Hình Đại Diện {course_number} {course_name} " @@ -10375,11 +10276,6 @@ msgstr "Hình Đại Diện {course_number} {course_name} " msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10400,7 +10296,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10410,7 +10305,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10468,7 +10362,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10522,44 +10415,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "Xem Lưu Trữ Khóa Học" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "Xem Khóa Học" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "Cài Đặt Email" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10575,7 +10457,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "Hoạt Động Thông Báo" @@ -10617,7 +10498,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10817,9 +10697,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "Tiêu đề" @@ -10831,7 +10709,6 @@ msgstr "Cập nhật bài viết" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10852,7 +10729,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -11019,7 +10895,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -11038,7 +10913,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11149,7 +11023,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11873,8 +11746,6 @@ msgstr "" msgid "Skip" msgstr "Bỏ qua" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11934,12 +11805,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -12077,7 +11946,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12225,7 +12093,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12290,7 +12157,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12320,9 +12186,6 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" @@ -12331,15 +12194,10 @@ msgstr "" " đây :" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12407,7 +12265,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12521,7 +12378,6 @@ msgstr "" msgid "Gender Distribution" msgstr "Phân Bố Giới Tính" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "Bảng Điều Khiển của Giáo Viên Hướng Dẫn" @@ -12534,7 +12390,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "Ghi Danh Hàng Loạt" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12546,12 +12401,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "Ghi Danh Tự Động" @@ -12573,22 +12426,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12770,7 +12617,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12805,12 +12651,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12823,12 +12667,10 @@ msgstr "Gửi về:" msgid "Myself" msgstr "Chính Tôi" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "Nhân viên và giáo viên hướng dẫn" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "Tất cả (học viên, nhân viên và giáo viên hướng dẫn)" @@ -12912,7 +12754,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12951,19 +12792,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "Xác định câu hỏi trong khóa học tại đây qua địa chỉ đầy đủ của nó:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13312,7 +13150,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13334,7 +13171,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13518,15 +13354,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13633,7 +13464,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13659,19 +13489,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13726,12 +13553,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13744,14 +13569,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "Trên báo chí" @@ -14025,7 +13847,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -14033,19 +13854,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -14066,7 +13884,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -14077,19 +13894,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -14107,7 +13921,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -14180,7 +13993,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -14196,15 +14008,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14428,7 +14235,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14441,7 +14247,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14497,7 +14302,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14512,9 +14316,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14617,8 +14418,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "Tập Tin & Tải Lên" @@ -14638,8 +14438,7 @@ msgstr "Nội dung" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "Tải Lên Tập Tin Mới" @@ -14709,7 +14508,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "Danh sách kiểm tra những việc cần làm" @@ -14744,7 +14543,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14757,7 +14555,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14880,7 +14678,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "Tổ chức" @@ -14890,7 +14688,6 @@ msgstr "Tổ chức" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14900,8 +14697,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14976,7 +14771,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "Cập Nhật Khóa Học" @@ -14991,7 +14786,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "Phác Thảo Khóa Học" @@ -15046,7 +14840,7 @@ msgstr "Xem Bản Thực" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15105,8 +14899,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -15125,11 +14919,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -15193,7 +14987,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15235,7 +15028,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15363,8 +15156,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15408,13 +15200,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15437,10 +15227,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15489,8 +15284,8 @@ msgid "Course Team" msgstr "Nhóm Điều Hành" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "Thiết Lập Nâng Cao" @@ -15512,7 +15307,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15557,7 +15352,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15599,7 +15393,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15700,7 +15494,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "Nhập Khóa Học" @@ -15831,8 +15625,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15848,7 +15641,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15887,7 +15680,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15897,7 +15690,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15928,7 +15721,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15958,7 +15751,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -16003,7 +15796,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -16024,7 +15817,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -16032,7 +15825,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -16044,7 +15837,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -16096,7 +15889,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16104,7 +15897,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16164,7 +15957,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16218,7 +16011,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16271,13 +16064,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16516,7 +16307,6 @@ msgstr "Thông Tin Cơ Bản" msgid "The nuts and bolts of your course" msgstr "Các thông tin thiết yếu của khóa học của bạn" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16575,8 +16365,7 @@ msgstr "Ngày đầu tiên khóa học bắt đầu" msgid "Course Start Time" msgstr "Thời Gian Bắt Đầu Khóa Học" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16660,7 +16449,6 @@ msgid "" msgstr "" "Giới thiệu, yêu cầu, hỏi đáp được sử dụng trong %s (với định dạng HTML)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "Hình Ảnh Khóa Học" @@ -16891,7 +16679,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16946,8 +16733,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17127,7 +16913,7 @@ msgstr "Liên Hệ" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17167,7 +16953,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17187,12 +16973,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "Chạy trình biên dịch nguồn Latex" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17217,7 +17001,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17233,7 +17017,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17284,11 +17068,11 @@ msgstr "" " có thể sử dụng các tính năng phức tạp hơn như thêm plugin, dữ liệu meta, " "bài viết liên quan..." -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "Nội dung" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "Tóm tắt" @@ -17654,11 +17438,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.mo b/conf/locale/vi/LC_MESSAGES/djangojs.mo index 79fe2d2f34..f5278cd2af 100644 Binary files a/conf/locale/vi/LC_MESSAGES/djangojs.mo and b/conf/locale/vi/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.po b/conf/locale/vi/LC_MESSAGES/djangojs.po index 0af44e3798..c14e7246d0 100644 --- a/conf/locale/vi/LC_MESSAGES/djangojs.po +++ b/conf/locale/vi/LC_MESSAGES/djangojs.po @@ -67,8 +67,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-03 10:08+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -110,8 +109,6 @@ msgstr "Liên kết này sẽ mở ra trong một cửa sổ hoặc tab mới c #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "Không biết" @@ -119,7 +116,6 @@ msgstr "Không biết" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "Xóa" @@ -204,7 +200,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "(có thể đạt %(num_points)s)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "Câu trả lời:" @@ -212,7 +207,6 @@ msgstr "Câu trả lời:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "Ẩn câu trả lời" @@ -233,7 +227,6 @@ msgstr "Câu trả lời bị ẩn" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "chưa trả lời" @@ -252,7 +245,6 @@ msgstr "Bạn cần chọn một điểm số trước khi bạn có thể gửi #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "Điểm của bạn không đạt chuẩn để chuyển sang bước kế tiếp." @@ -327,11 +319,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "Hiện câu hỏi" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "Ẩn câu hỏi" @@ -339,7 +329,6 @@ msgstr "Ẩn câu hỏi" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "Đoạn văn" @@ -350,21 +339,18 @@ msgstr "Preformatted" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "Heading 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "Heading 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "Heading 3" @@ -1223,7 +1209,6 @@ msgstr "Gỡ liên kết" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "Thay thế tất cả" @@ -1236,7 +1221,6 @@ msgstr "Thay thế bằng" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "Thay thế" @@ -1586,18 +1570,14 @@ msgstr "" "\n" "Nhấp chọn Hủy bỏ để quay lại trang và không gửi thông tin của bạn đi." -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "sai" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "đúng" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "trả lời" @@ -1716,7 +1696,6 @@ msgstr "Bật chất lượng HD" msgid "HD off" msgstr "Tắt chất lượng HD" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "Vị trí video" @@ -1760,7 +1739,6 @@ msgstr "Đang cập nhật nội dung thư viện mới nhất" msgid "Creating missing groups" msgstr "Tạo nhóm còn thiếu" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "Ẩn thảo luận" @@ -1770,13 +1748,9 @@ msgid "Show Discussion" msgstr "Hiển thị thảo luận" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1808,8 +1782,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "Chúng tôi có vài sự cố khi xử lý yêu cầu của bạn. Vui lòng thử lại." #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2104,12 +2076,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2149,7 +2119,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2158,32 +2127,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2284,7 +2247,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2297,7 +2259,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2485,7 +2446,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2498,10 +2458,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2512,12 +2468,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2771,7 +2721,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "" @@ -2865,7 +2814,7 @@ msgstr "nhập mô tả cho hình ảnh ở đây" msgid "enter link description here" msgstr "nhập mô tả cho liên kết ở đây" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2935,6 +2884,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2956,7 +2909,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2964,7 +2917,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3132,6 +3085,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3178,18 +3139,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3198,7 +3147,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3234,7 +3182,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3245,7 +3193,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "Đang lưu" @@ -3344,8 +3291,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3556,7 +3503,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "Thời gian gia hạn phải được xác định trong định dạng HH:MM" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3613,8 +3559,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3654,17 +3628,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3673,11 +3636,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3754,8 +3712,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3861,7 +3818,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3900,7 +3856,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Discard Changes" msgstr "Xóa Thay Đổi" @@ -3929,7 +3884,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "Hiện đối với Học Viên" @@ -4048,14 +4002,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4164,7 +4113,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4332,7 +4280,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4390,6 +4337,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4561,6 +4512,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4839,7 +4798,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4907,6 +4865,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4917,10 +4889,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4946,12 +4926,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5051,7 +5029,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5122,10 +5099,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5258,7 +5231,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5337,7 +5309,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5391,7 +5362,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5511,15 +5481,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5529,11 +5493,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5549,7 +5510,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5574,8 +5534,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5602,8 +5560,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo index fb5aec9e4a..b795b3cdeb 100644 Binary files a/conf/locale/zh_CN/LC_MESSAGES/django.mo and b/conf/locale/zh_CN/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.po b/conf/locale/zh_CN/LC_MESSAGES/django.po index 4079132a63..39b0701fed 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -212,7 +212,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2015-01-18 09:50+0000\n" "Last-Translator: 汤和果 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" @@ -240,11 +240,10 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "论坛" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -281,15 +280,11 @@ msgstr "已完成" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "名称" @@ -381,6 +376,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "用户名至少得两个字符串" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "需要正确的邮件格式" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "需要一个有效的密码" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "你的合法名字必须至少包含两个字符的长度" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "用户名只能包含英文字母A-Z大小写和阿拉伯数字0-9,不能包含空格。" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "您必须接受本服务条款。" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "需要以上学历" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "你的性别是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "你的出生年份是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "你的邮件地址是必填项" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "你的目标描述是必填项" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "城市是必填项" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "国家是必填项" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "您必须遵循诚信准则才能注册。" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "密码: " + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -401,7 +472,7 @@ msgstr "女" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "其他" @@ -457,6 +528,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -572,102 +650,6 @@ msgstr "用户名'{username}'对应的账户已存在。" msgid "An account with the Email '{email}' already exists." msgstr "电子邮件'{email}'对应的账户已存在。" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "错误(401 {field}),请给我们发送电子邮件。" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "您必须遵循诚信准则才能注册。" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "您必须接受本服务条款。" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "用户名至少得两个字符串" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "需要正确的邮件格式" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "你的合法名字必须至少包含两个字符的长度" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "需要一个有效的密码" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "需要接受服务条款" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "需要同意诚信准则" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "需要以上学历" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "你的性别是必填项" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "你的出生年份是必填项" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "你的邮件地址是必填项" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "你的目标描述是必填项" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "城市是必填项" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "国家是必填项" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "需要有效的电子邮件地址。" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "用户名只能包含英文字母A-Z大小写和阿拉伯数字0-9,不能包含空格。" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "密码: " - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "无法发送激活邮件。" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "未知错误。请给我们发电子邮件,告知错误是如何发生的。" @@ -726,7 +708,7 @@ msgstr "" msgid "Name required" msgstr "需要填写姓名" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "无效的ID" @@ -1159,7 +1141,7 @@ msgstr "不正确" msgid "incomplete" msgstr "不完整" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "未答复" @@ -1172,7 +1154,7 @@ msgstr "处理中" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1211,7 +1193,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1219,7 +1201,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1256,12 +1238,10 @@ msgstr "" msgid "Execution of unsafe Javascript code is not allowed." msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "复选框" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "多项选择" @@ -1292,17 +1272,15 @@ msgstr "Choicegroup必须至少包含1个正确选项和1个错误选项" msgid "True/False Choice" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "下拉列表" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "数值输入" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "工作人员对这个问题的答案有问题。" @@ -1343,7 +1321,6 @@ msgid "" "There was a problem with the staff answer to this problem: empty boundary." msgstr "工作人员对此问题的解答存在问题:空白边界。" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "文本输入" @@ -1500,7 +1477,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1532,7 +1508,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1582,7 +1557,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1611,7 +1585,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1752,8 +1725,6 @@ msgstr "如果该问题依然存在,请联系课程工作人员。" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "问题已结束。" @@ -2268,12 +2239,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2392,9 +2357,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2631,7 +2593,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "关于我们" @@ -2707,8 +2668,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3285,7 +3244,7 @@ msgid "Wiki" msgstr "维基" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "教材" @@ -3542,7 +3501,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3686,7 +3644,6 @@ msgstr "主讲教师-判分" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "所有评价" @@ -3734,7 +3691,6 @@ msgstr "无法将你发布的内容提交给评定者,请稍晚再重新尝试 #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "从评定者处获取反馈出错。" @@ -3772,7 +3728,6 @@ msgstr "进度" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "完成" @@ -4075,19 +4030,15 @@ msgstr "" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "版权" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "用户名" @@ -4191,6 +4142,22 @@ msgstr "用户{username} 不存在" msgid "User {username} has never accessed problem {location}" msgstr "用户{username} 从来没有访问{location}问答" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "错误:没有找到可以播放的视频源!" @@ -4239,7 +4206,6 @@ msgstr "无法切换到指定的分支。请检查你的分支名。" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4298,7 +4264,7 @@ msgstr "修改后的密码" msgid "All ok!" msgstr "一切正常!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "请提供用户名" @@ -4363,12 +4329,11 @@ msgstr "用户总数" msgid "Courses loaded in the modulestore" msgstr "已加载课程至模块仓库" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "用户名" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "电子邮件" @@ -4432,7 +4397,7 @@ msgstr "成功切换到分支:{branch_name}" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "课程名称" @@ -4466,7 +4431,7 @@ msgstr "错误,不能通过 ID {0}
{1}
取得课程" msgid "Deleted" msgstr "已删除" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "课程ID" @@ -4500,22 +4465,10 @@ msgid "" " and optionally specified directory." msgstr "倒入指定的git代码仓库和可选分支到模块库与可选的指定目录。" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "重新开启帖子" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "关闭帖子" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "标题不能为空" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "内容不能为空" @@ -4524,7 +4477,6 @@ msgstr "内容不能为空" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "评论层级过深" @@ -4625,12 +4577,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "电子邮件" @@ -4744,18 +4693,14 @@ msgstr "成功重置了学生{0}的截止日期从{1}变为{2}" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4786,7 +4731,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4894,7 +4838,6 @@ msgstr "请输入作业名称" msgid "Invalid assignment name '{name}'" msgstr "作业名称 '{name}'无效" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "外部邮箱" @@ -4961,8 +4904,8 @@ msgstr "身份标识" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -5016,7 +4959,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "扩展截止日期" @@ -5075,7 +5017,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "尚无状态信息" @@ -5324,7 +5265,6 @@ msgstr "查看您此前提交评分的开放性问题。" msgid "View submissions that have been flagged by students as inappropriate." msgstr "查看提交内容中被学生标注为不妥的内容。" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "供评分的新提交" @@ -5379,7 +5319,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5469,8 +5409,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5565,7 +5504,6 @@ msgstr "偿还日期" msgid "Amount of Refund" msgstr "偿还总数" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "服务费(如果有的话)" @@ -5595,12 +5533,10 @@ msgstr "货币" msgid "Comments" msgstr "评论" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "大学" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "课程" @@ -5694,7 +5630,7 @@ msgstr "" msgid "Course added to cart." msgstr "课程添加到购物车。" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5731,7 +5667,6 @@ msgstr "你没有访问此页面的权限。" msgid "The payment processor did not return a required parameter: {0}" msgstr "付款处理器没有返回所需的参数:{0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "对于参数 {1} ,付款处理器返回一个错误类型值 {0} 。" @@ -5884,7 +5819,6 @@ msgid "" "payment" msgstr "账户中的资金不足。可能的解决方法:重试另一种付款方式" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "未知的原因" @@ -6257,7 +6191,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "拍摄" @@ -6363,7 +6296,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "您的密码重置已完成" @@ -6564,7 +6496,6 @@ msgstr "删除文章" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "删除" @@ -6617,12 +6548,9 @@ msgstr "预览" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6642,10 +6570,7 @@ msgstr "Wiki预览" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "窗口打开" @@ -6683,7 +6608,7 @@ msgstr "自动日志" msgid "Change" msgstr "修改" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "合并选择项和当前项..." @@ -6695,11 +6620,11 @@ msgstr "转到选择的版本" msgid "Wiki Revision Preview" msgstr "Wiki修订预览" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "返回历史视图" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "切换到这个版本" @@ -6721,7 +6646,7 @@ msgstr "当您合并修订版本与当前版本时,所有的数据都会被保 msgid "After this, it's important to do a manual review." msgstr "注意:请在操作完成后做一次人工检查。" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "创建新的合并版本" @@ -6953,30 +6878,20 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "密码" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -7041,8 +6956,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "诚信准则" @@ -7051,23 +6964,19 @@ msgstr "诚信准则" msgid "Terms of Service and Honor Code" msgstr "服务条款和诚信准则" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "服务条款" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "课程ID更新无效。" @@ -7183,7 +7092,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7216,7 +7124,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7422,8 +7334,7 @@ msgstr "页面无法找到" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7435,13 +7346,8 @@ msgstr "" msgid "close" msgstr "关闭" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7461,7 +7367,7 @@ msgstr "解散" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "设置" @@ -7470,13 +7376,11 @@ msgstr "设置" msgid "Error:" msgstr "错误:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "组织:" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7491,10 +7395,8 @@ msgstr "课程" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "电子邮件" @@ -7504,7 +7406,7 @@ msgstr "电子邮件" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "例:username@domain.com" @@ -7536,14 +7438,13 @@ msgstr "例:Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "公开用户名" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "例:JaneDoe" @@ -7557,7 +7458,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "细节" @@ -7584,13 +7485,11 @@ msgstr "访问您的{link_start}控制面板{link_end}来查看您的课程。" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "隐私政策" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "帮助" @@ -7611,7 +7510,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "开始选择你的课程轨迹" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "选择认证证书" @@ -7696,7 +7594,7 @@ msgstr "新" msgid "Dashboard" msgstr "控制面板" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "编辑" @@ -7740,7 +7638,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "重设密码" @@ -7748,7 +7646,7 @@ msgstr "重设密码" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7782,7 +7680,7 @@ msgid "" "your password." msgstr "一封邮件已经被发送至 {email},请通过点击邮件中的链接更改你的密码。" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "更换邮箱" @@ -7833,15 +7731,6 @@ msgstr "更改我的名字" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "未注册" @@ -7905,7 +7794,7 @@ msgstr "被拒绝的学生:" msgid "Debug: " msgstr "调试:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "外部认证失败" @@ -7942,7 +7831,7 @@ msgstr "已提交" msgid "Puzzle Leaderboard" msgstr "答题排行榜" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7985,13 +7874,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "联系我们" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "常见问题" @@ -8013,31 +7900,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -8054,7 +7941,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "招才纳贤" @@ -8070,7 +7956,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "密码重置" @@ -8097,7 +7982,7 @@ msgstr "重置我的密码" msgid "Email is incorrect." msgstr "邮箱不正确。" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} 帮助" @@ -8161,8 +8046,6 @@ msgstr "附上错误消息以及导致错误的步骤等" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8300,7 +8183,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "帮助信息" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "通过OpenID登录" @@ -8488,7 +8371,7 @@ msgstr "原始数据:" msgid "Accepted" msgstr "通过" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "错误" @@ -8509,17 +8392,15 @@ msgstr "确认" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "运行机制" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "查找课程" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8539,13 +8420,11 @@ msgstr "" msgid "Shopping Cart" msgstr "购物车" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "注册" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8563,7 +8442,7 @@ msgstr "全局导航" msgid "Schools" msgstr "学校" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "现在注册" @@ -8628,7 +8507,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "在你注册时发生了下列错误:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8639,7 +8517,6 @@ msgid "Enter a public username:" msgstr "输入用户昵称" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "将会在您参加的任何讨论或论坛上显示(之后将无法更改)" @@ -8766,11 +8643,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "请将以下字段补充完整以完成账户注册。" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "用于你将来获得的各种证书" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "以后不能更改" @@ -8822,12 +8699,12 @@ msgid "" msgstr "" "您已重新启用 {platform_name}论坛邮件通知功能。请单击{dashboard_link_start}此处{link_end}返回您的工作台。" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "上一个" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "下一个" @@ -8836,15 +8713,15 @@ msgstr "下一个" msgid "Sign Up for {platform_name}" msgstr "注册为{platform_name}平台的会员" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "例如 yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "例如:昵称(在论坛上显示的名称)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "例如:姓名(用于证书)" @@ -8945,7 +8822,7 @@ msgstr "删除学生状态" msgid "Rescore Student Submission" msgstr "对学生的提交记录重新评分" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "模块域" @@ -9001,7 +8878,6 @@ msgstr "教员配备及学生选课" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Git日志" @@ -9079,6 +8955,18 @@ msgstr "从网站中删除课程" msgid "Platform Version" msgstr "平台版本" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -9093,6 +8981,11 @@ msgstr "日期" msgid "Git Action" msgstr "Git动作" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9233,7 +9126,7 @@ msgstr "回到字幕起始点。" msgid "Download video" msgstr "下载视频" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "下载字幕" @@ -9249,7 +9142,6 @@ msgstr "您的话:" msgid "Total number of words:" msgstr "总字数:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "开启计算器" @@ -9588,8 +9480,6 @@ msgstr "{chapter}, 当前章节" msgid "due {date}" msgstr "到期日{date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9648,12 +9538,10 @@ msgstr "课程概况" msgid "Share with friends and family!" msgstr "与亲朋好友分享!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9707,6 +9595,17 @@ msgstr "" msgid "Additional Resources" msgstr "额外资源" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "注册" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9784,7 +9683,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9821,11 +9720,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "在职员界面查看更新" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "课程动态 & 新闻" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "讲义导航" @@ -9833,7 +9732,6 @@ msgstr "讲义导航" msgid "Course Handouts" msgstr "课程讲义" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "传统教师面板" @@ -9887,7 +9785,6 @@ msgstr "管理小组" msgid "Grade Downloads" msgstr "成绩下载" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9918,7 +9815,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "这门课程的作业必须与存储在成绩单上的保持一致,否则系统会出现错误。" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "成绩单姓名:" @@ -9932,7 +9828,6 @@ msgstr "作业名称:" msgid "Course-specific grade adjustment" msgstr "调整特定课程的分数" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9967,7 +9862,6 @@ msgstr "课程注册数据" msgid "Pull enrollment from remote gradebook" msgstr "从远程成绩单中获取注册人数" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "章节:" @@ -10012,7 +9906,6 @@ msgstr "日" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "学生" @@ -10103,7 +9996,6 @@ msgstr "持续时间(秒)" msgid "Task Progress" msgstr "任务进度" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "未知" @@ -10190,8 +10082,18 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "学生 '{username}' ({email}) 的学习进度" #: lms/templates/courseware/progress.html -msgid "Download your certificate" -msgstr "下载您的证书" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" +msgstr "" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -10258,7 +10160,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "认证{cert_name_short}生成中" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "点击此链接打开或下载PDF文件" @@ -10267,23 +10168,6 @@ msgstr "点击此链接打开或下载PDF文件" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"由于您{cert_name_long}的身份认证时没有提供一组有效的照片,所以无法授予您{cert_name_short}认证证书。作为替代只能授予一个诚信准则证书给您{cert_name_short}" -" 。" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "下载认证{cert_name_short}(PDF)" @@ -10302,11 +10186,27 @@ msgstr "下载您已经通过身份认证的 {cert_name_short} (PDF)证书" msgid "Complete our course feedback survey" msgstr "填写课程反馈问卷" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"由于您{cert_name_long}的身份认证时没有提供一组有效的照片,所以无法授予您{cert_name_short}认证证书。作为替代只能授予一个诚信准则证书给您{cert_name_short}" +" 。" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} 封面图片" @@ -10315,11 +10215,6 @@ msgstr "{course_number} {course_name} 封面图片" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "登记为:" @@ -10340,7 +10235,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "作为一名已认证的学生,你已成功注册。" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10350,7 +10244,6 @@ msgstr "" msgid "Verified" msgstr "已验证" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "您已登记为本课程诚信准则学员" @@ -10408,7 +10301,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10464,44 +10356,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "查看存档的课程" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "查看课程" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "电子邮件设置" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10517,7 +10398,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "{course_name}: 重新审核于 {date}" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "通知方式" @@ -10559,7 +10439,6 @@ msgstr "拒绝" msgid "Approved:" msgstr "通过" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "身份验证状态" @@ -10757,9 +10636,7 @@ msgstr "编辑讨论帖" msgid "Edit post title" msgstr "编辑帖子标题" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "标题" @@ -10771,7 +10648,6 @@ msgstr "更新讨论帖" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "添加评论" @@ -10792,7 +10668,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10959,7 +10834,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10978,7 +10852,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -11089,7 +10962,6 @@ msgstr "论坛现在正在维护,将尽快恢复正常。" msgid "User Profile" msgstr "用户资料" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "…" @@ -11830,8 +11702,6 @@ msgstr "被标记为不恰当的内容,需要再次审查" msgid "Skip" msgstr "跳过" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11891,12 +11761,10 @@ msgstr "课程显示名称:" msgid "Has the course started?" msgstr "课程开始了吗?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "是的" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "尚未" @@ -12035,7 +11903,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12183,7 +12050,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12248,7 +12114,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12278,24 +12143,16 @@ msgid "" msgstr "现在,您可以将一些特殊的单元小节单独授权给个别的学生,但请注意在最后的日期之前,另外你不能使用这个工具来给一个特别的学生提前布置任务。" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "在这可以查看{platform_name}的邮件地址以及学生的用户名:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "学生e-mail或者用户名" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "请选择等级单元" @@ -12363,7 +12220,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12477,7 +12333,6 @@ msgstr "加载问题列表……" msgid "Gender Distribution" msgstr "性别分布" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "授课教师面板" @@ -12490,7 +12345,6 @@ msgstr "回归传统界面" msgid "Batch Enrollment" msgstr "大批次注册" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12502,12 +12356,10 @@ msgid "" " spelling." msgstr "对该类问题您不会受到提示邮件,因此请仔细检查,确保拼写无误。" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "电子邮箱地址/用户名" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "自动注册" @@ -12530,22 +12382,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "在“取消注册”的情况下,本项选择将不会生效。" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "通过邮件通知用户" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "如果 勾选该选项,用户将受到一封通知邮件。" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "注册" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12731,7 +12577,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12766,12 +12611,10 @@ msgstr "以CSV格式下载学生开放数据" msgid "Download Student Grades as a CSV" msgstr "以CSV格式下载学生成绩数据" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "这是一个部分列表,查看所有以CSV格式下载的学生信息" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "发送电子邮件" @@ -12784,12 +12627,10 @@ msgstr "发至:" msgid "Myself" msgstr "我自己" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "教员与主讲教师" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "所有人(学生,教员和主讲教师)" @@ -12870,7 +12711,6 @@ msgstr "若要查看本课程所有已提交批量邮件任务的状态,点击 msgid "Show Email Task History" msgstr "显示邮件任务历史" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12909,19 +12749,16 @@ msgstr "学生进度页面" msgid "Student-specific grade adjustment" msgstr "特定学生分数调整" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13274,7 +13111,6 @@ msgstr "我们已经给您的邮箱发送邮件,您应该能够很快收到, #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13296,7 +13132,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13481,15 +13316,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13596,7 +13426,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13622,19 +13451,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13689,12 +13515,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "此页面特地留空。edx.org未使用此页面,但是可能留作Open edX安装时使用。" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13707,14 +13531,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "多媒体工具箱" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "新闻" @@ -13986,7 +13807,6 @@ msgstr "使用您的摄像头拍摄一张您的面部照片,以便于我们与 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13994,19 +13814,16 @@ msgstr "没有看到你的照片?确认在获取授权时允许你的浏览器 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "再次拍摄" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "看起来很好" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "成功拍摄的小技巧" @@ -14027,7 +13844,6 @@ msgstr "是否可以将您拍摄的相片与身份关联?" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "第一次到这里,请点击摄像按钮" @@ -14038,19 +13854,16 @@ msgstr "获取你的图片" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "使用对号按钮" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "一旦满意你的照片" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "提交问题" @@ -14068,7 +13881,6 @@ msgstr "作为认证程序的一部分,我们需要你的照片来确认你就 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "照片会用在什么地方?" @@ -14142,7 +13954,6 @@ msgstr "请完成您的其他二次验证。" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "返回之前页面" @@ -14158,15 +13969,10 @@ msgstr "你正在身份验证进程中" msgid "You currently need to re-verify for the following courses:" msgstr "你现在需要重现注册下面的这些课程:" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "注册于{date}" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14394,7 +14200,6 @@ msgid "" "below." msgstr "请复查照片并且符合下面必需要求" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "这些照片符合以下需求:" @@ -14407,7 +14212,6 @@ msgstr "足够明亮" msgid "Show your whole face" msgstr "清晰显示你整个脸部" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "照片中的面部与你身份材料中的面部能够匹配" @@ -14463,7 +14267,6 @@ msgstr "我们收到了你重新提交的信息,并将稍后进行审查以核 msgid "Return to Your Dashboard" msgstr "回到你的主页面" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "重新验证失败" @@ -14478,9 +14281,6 @@ msgstr "您的重新验证在二次验证截止时间之后被提交,您不能 msgid "Please contact support if you believe this message to be in error." msgstr "如果您相信当前消息存在错误,请联系技术支持。" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "{span_start}(激活){span_end}" @@ -14581,8 +14381,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "文件&上传" @@ -14602,8 +14401,7 @@ msgstr "内容" msgid "Page Actions" msgstr "页面操作" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "上传新文件" @@ -14673,7 +14471,7 @@ msgstr "您的文件已经被删除" msgid "close alert" msgstr "关闭警告" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "课程核对表" @@ -14708,7 +14506,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "复制" @@ -14721,7 +14518,7 @@ msgid "Delete this component" msgstr "删除此组件" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14844,7 +14641,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "组织" @@ -14854,7 +14651,6 @@ msgstr "组织" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "例如:UniversityX 或 OrganizationX" @@ -14864,8 +14660,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14940,7 +14734,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "课程更新" @@ -14955,7 +14749,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "使用课程更新来通知学生重要的日期或者考试,高亮显示论坛中的特别讨论,发布进度变更,以及回复学生问题。你可以用HTML来编辑更新。" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "课程大纲" @@ -15010,7 +14803,7 @@ msgstr "在线查看" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -15069,8 +14862,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "页面" @@ -15089,11 +14882,11 @@ msgstr "注意:页面是公开可见的,知道该页面链接的用户可以 msgid "Show this page" msgstr "显示该页面" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "显示/隐藏页面" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "该页面无法重新排序" @@ -15157,7 +14950,6 @@ msgid "" msgstr "课程页面链接位于课程主页上方的导航条。首先是缺省页面链接(课件、课程信息、论坛、维基和进度),之后是参考教材及自定义页面。" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "相似的模型" @@ -15199,7 +14991,7 @@ msgstr "" msgid "Back to dashboard" msgstr "回到主页" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "导出课程" @@ -15327,8 +15119,7 @@ msgstr "" msgid "Export Course to Git" msgstr "导出课程到Git" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "导出到Git" @@ -15372,13 +15163,11 @@ msgstr "您的课程:" msgid "Course git url:" msgstr "课程Git地址:" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15401,10 +15190,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15453,8 +15247,8 @@ msgid "Course Team" msgstr "课程团队" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "高级设置" @@ -15476,7 +15270,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15521,7 +15315,6 @@ msgid "" "You don't have to have it all done at once." msgstr "您可以根据教学计划逐步创建和发布 章节,而无需一次性完成所有章节的建设与发布。" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "学习不仅仅是听课" @@ -15563,7 +15356,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15664,7 +15457,7 @@ msgid "" "to fix the error." msgstr "学生无法访问这个组件。请重新编辑您的组件以修复错误。" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "课程导入" @@ -15801,8 +15594,7 @@ msgid "" msgstr "" "如果您在课程进行中执行了导入,并更改了任意问题组件的URL名字(或url名字节点) ,与此问题组件相关的学生数据将可能丢失。这些数据包括学生问题得分。" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15818,7 +15610,7 @@ msgstr "" msgid "Email staff to create course" msgstr "发邮件给教员来创建课程" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "请改正下面高亮的字段。" @@ -15857,7 +15649,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "这个编号用来标记该课程在组织内的唯一性。" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15867,7 +15659,7 @@ msgstr "注意:这是课程URL的一部分,请勿使用空格或特殊字符 msgid "The term in which your course will run." msgstr " 您课程开设的学期。" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "创建" @@ -15898,7 +15690,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15928,7 +15720,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "开课时间" @@ -15973,7 +15765,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "创建您的第一个课程" @@ -15994,7 +15786,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "你的课程创建者资格请求状态:" @@ -16002,7 +15794,7 @@ msgstr "你的课程创建者资格请求状态:" msgid "Request the Ability to Create Courses" msgstr "请求创建课程的权限" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "你的课程创建者资格请求状态" @@ -16014,7 +15806,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "您的课程创建者资格的请求是:" @@ -16066,7 +15858,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -16074,7 +15866,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -16134,7 +15926,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16188,7 +15980,7 @@ msgstr "" msgid "Sign In" msgstr "登录" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16242,13 +16034,11 @@ msgstr "请提供您想要添加的课程教员的邮箱地址" msgid "Add User" msgstr "添加用户" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "当前角色:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "您!" @@ -16488,7 +16278,6 @@ msgstr "基本信息" msgid "The nuts and bolts of your course" msgstr "您课程的具体细节" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "该字段已禁用:信息不可修改。" @@ -16547,8 +16336,7 @@ msgstr "课程开始的第一天" msgid "Course Start Time" msgstr "课程开始时间" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16631,7 +16419,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "介绍说明、先修条件、常见问题解答在%s (HTML格式)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "课程图片" @@ -16858,7 +16645,6 @@ msgid "" "worth." msgstr "你也可以创建作业类型,比如家庭作业、实验、测验、以及考试,并且指定每个作业是否计入最终的成绩及其评价分值。" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "展开或折叠" @@ -16910,8 +16696,7 @@ msgstr "如果您的教材没有独立的章节,您可以上传整个文本作 msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -17091,7 +16876,7 @@ msgstr "联系我们" msgid "Current Course:" msgstr "当前课程" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -17131,7 +16916,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "帮助 & 账户导航" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -17151,12 +16936,10 @@ msgstr "您当前没有登录" msgid "Launch Latex Source Compiler" msgstr "启动 Latex 源编译器" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "标题一" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "解释" @@ -17181,7 +16964,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17197,7 +16980,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17244,11 +17027,11 @@ msgid "" "articles etc..." msgstr "这只是您文章的最初内容。在创建它以后,您可以使用更复杂的特性,比如说增加插件、元数据、相关文章等等......" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "内容" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "摘要" @@ -17607,11 +17390,11 @@ msgstr "附件修订版本" msgid "%s was successfully added." msgstr "%s已经成功添加。" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "你的文件无法被保存:%s" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo index 0e7286f46d..675d6f6625 100644 Binary files a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po index cad6a31549..e35ac599b7 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -108,9 +108,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-04 12:42+0000\n" -"Last-Translator: Changyue Wang \n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" +"Last-Translator: Sarina Canelake \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,7 +122,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -151,8 +150,6 @@ msgstr "该链接将在新的浏览器窗口/标签打开" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "未知" @@ -160,7 +157,6 @@ msgstr "未知" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "删除" @@ -240,7 +236,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "(本题共有%(num_points)s分)" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "回答:" @@ -248,7 +243,6 @@ msgstr "回答:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "隐藏答案" @@ -269,7 +263,6 @@ msgstr "答案隐藏" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "未答复" @@ -288,7 +281,6 @@ msgstr "你需要在提交前选择一个评价分数。" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "您的成绩达不到要求,不能进行下一步骤。" @@ -352,11 +344,9 @@ msgstr "这个问题需要文件上传,但您的浏览器不支持。尝试使 #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "显示问题" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "隐藏问题" @@ -364,7 +354,6 @@ msgstr "隐藏问题" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "段落样式" @@ -375,21 +364,18 @@ msgstr "预设格式" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "标题 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "标题 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "标题 3" @@ -1244,7 +1230,6 @@ msgstr "移除链接" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "全部替换" @@ -1257,7 +1242,6 @@ msgstr "替换为" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "替换" @@ -1599,18 +1583,14 @@ msgstr "" "\n" "单击取消,取消发送信息并返回本页。" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1728,7 +1708,6 @@ msgstr "打开高清" msgid "HD off" msgstr "关闭高清" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "视频位置" @@ -1772,7 +1751,6 @@ msgstr "更新最新的库内容" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "隐藏讨论" @@ -1782,13 +1760,9 @@ msgid "Show Discussion" msgstr "显示讨论" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1818,8 +1792,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "处理请求遇到问题,请重试。" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2105,12 +2077,10 @@ msgstr[0] "查看信息栏以移除%(count)s的标记" msgid "All flags have been removed. To undo, uncheck the box." msgstr "所有标记已移除。取消选中信息框以撤销。" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "您已经成功提交该注释" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "注释提交不恰当或内容具有攻击性" @@ -2149,7 +2119,6 @@ msgstr "发表日期" msgid "More" msgstr "更多" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "我的笔记" @@ -2158,32 +2127,26 @@ msgstr "我的笔记" msgid "Instructor" msgstr "主讲教师" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "公开" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "搜索" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "用户" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "标签" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "注解文本" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "清除" @@ -2274,7 +2237,6 @@ msgstr "用户名" msgid "Email" msgstr "电子邮件" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "取消授权" @@ -2287,7 +2249,6 @@ msgstr "请输入用户名或者邮箱地址" msgid "Please enter a username or email." msgstr "请输入一个用户名或者电子邮件。" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "更改用户权限出错。" @@ -2476,7 +2437,6 @@ msgstr "" msgid "Error sending email." msgstr "发送电子邮件错误。" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "本课程尚无发送电子邮件记录。" @@ -2489,10 +2449,6 @@ msgstr "获取该课程的邮件任务历史时发生错误。" msgid "There was an error obtaining email content history for this course." msgstr "存在能获取该课程邮件历史内容的错误" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "请输入学生的邮件地址或用户名。" @@ -2503,12 +2459,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "获取学生“<%= student_id %>”的进度 URL 时出错。请确认该学生的 ID 已正确拼写。" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "请输入问题的位置。" @@ -2772,7 +2722,6 @@ msgstr "系统处于非正常状态:<%= state %>" msgid "System got into invalid state for submission: " msgstr "系统状态失效无法提交:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(隐藏)" @@ -2866,7 +2815,7 @@ msgstr "此处输入图像的描述" msgid "enter link description here" msgstr "此处输入链接的描述" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "此处输入代码" @@ -2936,6 +2885,10 @@ msgid "" "email to confirm your email address change." msgstr "你将会在你的收件箱中收到一份确认邮件。请点击邮件中的链接以确认更换你的邮箱地址。" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2957,16 +2910,16 @@ msgid "Hide notes" msgstr "隐藏注释" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" -msgstr "显示注释" +msgid "Notes visible" +msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "Show notes" msgstr "显示注释" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" -msgstr "隐藏注释" +msgid "Notes hidden" +msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js msgid "Location in Course" @@ -3133,6 +3086,14 @@ msgstr "我们不能填充个语言选择列表。" msgid "Saved" msgstr "已保存" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "发生了一个未知错误,请重试。" @@ -3179,18 +3140,6 @@ msgstr "貌似你还没有一个可使用的摄像头。" msgid "Double-check that your webcam is connected and working to continue." msgstr "再次确认你的摄像头已经连接并且正常工作以继续。" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "未检测到Flash播放器" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "貌似你没有安装Flash。" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "%(a_start)s 获取Flash %(a_end)s以继续你的注册。" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "你的文件'{file}'上传成功。" @@ -3199,7 +3148,6 @@ msgstr "你的文件'{file}'上传成功。" msgid "Your upload of '{file}' failed." msgstr "你的文件'{file}'上传失败。" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "无法读取数据,请稍后再试试。" @@ -3233,7 +3181,7 @@ msgstr "此情况可能由于服务器错误或者你的网络连接错误导致 msgid "Studio's having trouble saving your work" msgstr "Studio 保存您工作时遇到问题" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3244,7 +3192,6 @@ msgstr "Studio 保存您工作时遇到问题" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "保存中" @@ -3343,8 +3290,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3553,7 +3500,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "宽限时间必须以 HH:MM 格式设定。" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3614,8 +3560,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3655,17 +3629,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3674,11 +3637,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3751,8 +3709,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3854,7 +3811,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3893,7 +3849,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3921,7 +3876,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -4036,14 +3990,9 @@ msgstr "对不起,您上传的字幕文件存在格式错误,请检查并重 msgid "Upload translation" msgstr "上传译文" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4152,7 +4101,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4320,7 +4268,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4378,6 +4325,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4549,6 +4500,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4827,7 +4786,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4895,6 +4853,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4905,10 +4877,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4934,12 +4914,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -5039,7 +5017,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5110,10 +5087,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5246,7 +5219,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5325,7 +5297,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5379,7 +5350,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5499,15 +5469,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5517,11 +5481,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5537,7 +5498,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5562,8 +5522,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5590,8 +5548,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/zh_HK/LC_MESSAGES/django.mo b/conf/locale/zh_HK/LC_MESSAGES/django.mo index ae3892c41d..41c4c902f4 100644 Binary files a/conf/locale/zh_HK/LC_MESSAGES/django.mo and b/conf/locale/zh_HK/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_HK/LC_MESSAGES/django.po b/conf/locale/zh_HK/LC_MESSAGES/django.po index b885e011a6..88ac773b82 100644 --- a/conf/locale/zh_HK/LC_MESSAGES/django.po +++ b/conf/locale/zh_HK/LC_MESSAGES/django.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: Amy.Feng \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/edx-platform/language/zh_HK/)\n" @@ -76,7 +76,7 @@ msgstr "" #. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: This is a forum post type #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/discussion/_underscore_templates.html msgid "Discussion" msgstr "" @@ -84,7 +84,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/component.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/templates/courseware/legacy_instructor_dashboard.html -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" msgstr "" @@ -96,7 +95,6 @@ msgstr "" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -123,15 +121,11 @@ msgstr "" #: cms/djangoapps/contentstore/views/videos.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "" @@ -223,6 +217,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -243,7 +313,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -300,6 +370,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -410,102 +487,6 @@ msgstr "" msgid "An account with the Email '{email}' already exists." msgstr "" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" @@ -564,7 +545,7 @@ msgstr "" msgid "Name required" msgstr "" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "" @@ -997,7 +978,7 @@ msgstr "" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1010,7 +991,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1049,7 +1030,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1057,7 +1038,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "" @@ -1096,13 +1077,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1134,17 +1113,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1187,7 +1164,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1343,7 +1319,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1375,7 +1350,6 @@ msgstr "" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1427,7 +1401,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1456,7 +1429,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1597,8 +1569,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2115,12 +2085,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2239,9 +2203,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2478,7 +2439,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "關於" @@ -2554,8 +2514,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3132,7 +3090,7 @@ msgid "Wiki" msgstr "" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "" @@ -3384,7 +3342,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3527,7 +3484,6 @@ msgstr "" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3575,7 +3531,6 @@ msgstr "" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "" @@ -3613,7 +3568,6 @@ msgstr "" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3912,15 +3866,12 @@ msgstr "" msgid "Copyright" msgstr "版權" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py #: lms/templates/staff_problem_info.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" @@ -4027,6 +3978,22 @@ msgstr "" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "" @@ -4075,7 +4042,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4135,7 +4101,7 @@ msgstr "" msgid "All ok!" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "" @@ -4200,12 +4166,11 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "" @@ -4268,9 +4233,8 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html msgid "Course Name" msgstr "" @@ -4304,7 +4268,7 @@ msgstr "" msgid "Deleted" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "" @@ -4338,22 +4302,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4362,7 +4314,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "" @@ -4457,7 +4408,6 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "電郵" @@ -4571,18 +4521,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4613,7 +4559,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4723,7 +4668,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "" @@ -4790,8 +4734,8 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -4845,7 +4789,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "" @@ -4904,7 +4847,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "" @@ -5153,7 +5095,6 @@ msgstr "" msgid "View submissions that have been flagged by students as inappropriate." msgstr "" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "" @@ -5203,7 +5144,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5293,8 +5234,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5390,7 +5330,6 @@ msgstr "" msgid "Amount of Refund" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "" @@ -5420,14 +5359,11 @@ msgstr "" msgid "Comments" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html msgid "Course" msgstr "" @@ -5520,7 +5456,7 @@ msgstr "" msgid "Course added to cart." msgstr "" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5557,7 +5493,6 @@ msgstr "" msgid "The payment processor did not return a required parameter: {0}" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "" @@ -5687,7 +5622,6 @@ msgid "" "payment" msgstr "" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "" @@ -6034,7 +5968,6 @@ msgstr "" #: lms/djangoapps/verify_student/views.py #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "" @@ -6140,7 +6073,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "" @@ -6372,12 +6304,9 @@ msgstr "" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html +#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html +#: lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html @@ -6397,10 +6326,7 @@ msgstr "" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6437,7 +6363,7 @@ msgstr "" msgid "Change" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "" @@ -6449,11 +6375,11 @@ msgstr "" msgid "Wiki Revision Preview" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "" @@ -6475,7 +6401,7 @@ msgstr "" msgid "After this, it's important to do a manual review." msgstr "" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "" @@ -6703,12 +6629,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6718,21 +6641,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6810,8 +6725,6 @@ msgstr "" #: openedx/core/djangoapps/user_api/views.py #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "" @@ -6823,12 +6736,10 @@ msgstr "" msgid "Terms of Service and Honor Code" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" @@ -6838,11 +6749,9 @@ msgstr "" #. in order to register a new account. #: openedx/core/djangoapps/user_api/views.py cms/templates/widgets/footer.html #: lms/templates/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "" @@ -6954,7 +6863,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -6984,7 +6892,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7200,8 +7112,7 @@ msgstr "" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7213,13 +7124,8 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7239,7 +7145,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "" @@ -7248,13 +7154,11 @@ msgstr "" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7269,10 +7173,8 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "電郵" @@ -7282,7 +7184,7 @@ msgstr "電郵" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "" @@ -7314,14 +7216,13 @@ msgstr "" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "" @@ -7335,7 +7236,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "" @@ -7362,13 +7263,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "" @@ -7389,7 +7288,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7472,7 +7370,7 @@ msgstr "新增" msgid "Dashboard" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "編輯" @@ -7516,7 +7414,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -7524,7 +7422,7 @@ msgstr "" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "" @@ -7558,7 +7456,7 @@ msgid "" "your password." msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "更改電郵" @@ -7609,15 +7507,6 @@ msgstr "更改姓名" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "" @@ -7681,7 +7570,7 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -7718,7 +7607,7 @@ msgstr "" msgid "Puzzle Leaderboard" msgstr "" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7761,13 +7650,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "常見問題" @@ -7789,31 +7676,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7830,7 +7717,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "工作" @@ -7846,7 +7732,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "" @@ -7873,7 +7758,7 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" @@ -7933,8 +7818,6 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8070,7 +7953,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "" @@ -8251,7 +8134,7 @@ msgstr "" msgid "Accepted" msgstr "" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "" @@ -8272,17 +8155,15 @@ msgstr "確認" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8302,13 +8183,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8326,7 +8205,7 @@ msgstr "" msgid "Schools" msgstr "" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "" @@ -8391,7 +8270,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8402,7 +8280,6 @@ msgid "Enter a public username:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "" @@ -8523,11 +8400,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "" @@ -8578,12 +8455,12 @@ msgid "" "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "" @@ -8592,15 +8469,15 @@ msgstr "" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -8701,7 +8578,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "" @@ -8757,7 +8634,6 @@ msgstr "" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "" @@ -8835,6 +8711,18 @@ msgstr "" msgid "Platform Version" msgstr "" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8849,6 +8737,11 @@ msgstr "" msgid "Git Action" msgstr "" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -8986,7 +8879,7 @@ msgstr "" msgid "Download video" msgstr "" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9002,7 +8895,6 @@ msgstr "" msgid "Total number of words:" msgstr "總字數:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "" @@ -9339,8 +9231,6 @@ msgstr "" msgid "due {date}" msgstr "" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9398,12 +9288,10 @@ msgstr "" msgid "Share with friends and family!" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9457,6 +9345,17 @@ msgstr "" msgid "Additional Resources" msgstr "" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9533,7 +9432,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9569,11 +9468,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "" @@ -9581,7 +9480,6 @@ msgstr "" msgid "Course Handouts" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "" @@ -9635,7 +9533,6 @@ msgstr "" msgid "Grade Downloads" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9666,7 +9563,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "" @@ -9680,7 +9576,6 @@ msgstr "" msgid "Course-specific grade adjustment" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9715,7 +9610,6 @@ msgstr "" msgid "Pull enrollment from remote gradebook" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "" @@ -9760,7 +9654,6 @@ msgstr "" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "" @@ -9851,7 +9744,6 @@ msgstr "" msgid "Task Progress" msgstr "" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "" @@ -9938,7 +9830,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10004,7 +9906,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "" @@ -10013,21 +9914,6 @@ msgstr "" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10046,11 +9932,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "" @@ -10059,11 +9959,6 @@ msgstr "" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "" @@ -10084,7 +9979,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10094,7 +9988,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10152,7 +10045,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10206,44 +10098,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10259,7 +10140,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10301,7 +10181,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "" @@ -10499,9 +10378,7 @@ msgstr "" msgid "Edit post title" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "" @@ -10513,7 +10390,6 @@ msgstr "" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "" @@ -10534,7 +10410,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10699,7 +10574,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10718,7 +10592,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10829,7 +10702,6 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11553,8 +11425,6 @@ msgstr "" msgid "Skip" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11614,12 +11484,10 @@ msgstr "" msgid "Has the course started?" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "" @@ -11757,7 +11625,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -11905,7 +11772,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -11970,7 +11836,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12000,24 +11865,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12085,7 +11942,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12199,7 +12055,6 @@ msgstr "" msgid "Gender Distribution" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "" @@ -12212,7 +12067,6 @@ msgstr "" msgid "Batch Enrollment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12224,12 +12078,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -12251,22 +12103,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12448,7 +12294,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12483,12 +12328,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "" @@ -12501,12 +12344,10 @@ msgstr "" msgid "Myself" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "" @@ -12587,7 +12428,6 @@ msgstr "" msgid "Show Email Task History" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12626,19 +12466,16 @@ msgstr "" msgid "Student-specific grade adjustment" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -12980,7 +12817,6 @@ msgstr "" #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13002,7 +12838,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13186,15 +13021,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13301,7 +13131,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13327,19 +13156,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13394,12 +13220,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13412,14 +13236,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "" @@ -13691,7 +13512,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13699,19 +13519,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "" @@ -13732,7 +13549,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "" @@ -13743,19 +13559,16 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "" @@ -13773,7 +13586,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "" @@ -13846,7 +13658,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13862,15 +13673,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14094,7 +13900,6 @@ msgid "" "below." msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "" @@ -14107,7 +13912,6 @@ msgstr "" msgid "Show your whole face" msgstr "" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "" @@ -14163,7 +13967,6 @@ msgstr "" msgid "Return to Your Dashboard" msgstr "" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14178,9 +13981,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14281,8 +14081,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr "" @@ -14302,8 +14101,7 @@ msgstr "" msgid "Page Actions" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "" @@ -14373,7 +14171,7 @@ msgstr "" msgid "close alert" msgstr "" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "" @@ -14408,7 +14206,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" @@ -14421,7 +14218,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14544,7 +14341,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "" @@ -14554,7 +14351,6 @@ msgstr "" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "" @@ -14564,8 +14360,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14640,7 +14434,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "" @@ -14655,7 +14449,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "" @@ -14710,7 +14503,7 @@ msgstr "" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14769,8 +14562,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "" @@ -14789,11 +14582,11 @@ msgstr "" msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "" @@ -14857,7 +14650,6 @@ msgid "" msgstr "" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -14899,7 +14691,7 @@ msgstr "" msgid "Back to dashboard" msgstr "" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "" @@ -15027,8 +14819,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15072,13 +14863,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15101,10 +14890,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15153,8 +14947,8 @@ msgid "Course Team" msgstr "" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "" @@ -15176,7 +14970,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15221,7 +15015,6 @@ msgid "" "You don't have to have it all done at once." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "" @@ -15263,7 +15056,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15364,7 +15157,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "" @@ -15495,8 +15288,7 @@ msgid "" "students' problem scores." msgstr "" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15512,7 +15304,7 @@ msgstr "" msgid "Email staff to create course" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "" @@ -15551,7 +15343,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15561,7 +15353,7 @@ msgstr "" msgid "The term in which your course will run." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "" @@ -15592,7 +15384,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15622,7 +15414,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "" @@ -15667,7 +15459,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "" @@ -15688,7 +15480,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "" @@ -15696,7 +15488,7 @@ msgstr "" msgid "Request the Ability to Create Courses" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "" @@ -15708,7 +15500,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "" @@ -15760,7 +15552,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15768,7 +15560,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15828,7 +15620,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -15882,7 +15674,7 @@ msgstr "" msgid "Sign In" msgstr "" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -15935,13 +15727,11 @@ msgstr "" msgid "Add User" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "" @@ -16180,7 +15970,6 @@ msgstr "" msgid "The nuts and bolts of your course" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "" @@ -16239,8 +16028,7 @@ msgstr "" msgid "Course Start Time" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16323,7 +16111,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "" @@ -16549,7 +16336,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16601,8 +16387,7 @@ msgstr "" msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16782,7 +16567,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16822,7 +16607,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16842,12 +16627,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -16872,7 +16655,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -16888,7 +16671,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -16935,11 +16718,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "" @@ -17293,11 +17076,11 @@ msgstr "" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/zh_HK/LC_MESSAGES/djangojs.mo b/conf/locale/zh_HK/LC_MESSAGES/djangojs.mo index 4c283020a1..7830bc663f 100644 Binary files a/conf/locale/zh_HK/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_HK/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_HK/LC_MESSAGES/djangojs.po b/conf/locale/zh_HK/LC_MESSAGES/djangojs.po index ae3b8cbfca..ef1e99730e 100644 --- a/conf/locale/zh_HK/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_HK/LC_MESSAGES/djangojs.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/edx-platform/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -77,8 +76,6 @@ msgstr "" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -86,17 +83,14 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js -#: cms/templates/js/course-outline.underscore +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course-outline.underscore #: cms/templates/js/course_grade_policy.underscore #: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/group-configuration-editor.underscore #: cms/templates/js/show-textbook.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore msgid "Delete" msgstr "" @@ -187,7 +181,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "" @@ -195,7 +188,6 @@ msgstr "" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "" @@ -216,7 +208,6 @@ msgstr "" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "" @@ -235,7 +226,6 @@ msgstr "" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "" @@ -299,11 +289,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "" @@ -311,7 +299,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "" @@ -322,21 +309,18 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "" @@ -1201,7 +1185,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "" @@ -1215,7 +1198,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js #: cms/templates/js/metadata-file-uploader-item.underscore #: cms/templates/js/video/metadata-translations-item.underscore msgid "Replace" @@ -1552,18 +1534,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1681,7 +1659,6 @@ msgstr "" msgid "HD off" msgstr "" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "" @@ -1725,7 +1702,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "" @@ -1735,13 +1711,9 @@ msgid "Show Discussion" msgstr "" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1771,8 +1743,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2059,12 +2029,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2104,7 +2072,6 @@ msgstr "" msgid "More" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "" @@ -2113,32 +2080,26 @@ msgstr "" msgid "Instructor" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js #: cms/templates/js/metadata-dict-entry.underscore #: cms/templates/js/metadata-file-uploader-entry.underscore @@ -2239,7 +2200,6 @@ msgstr "" msgid "Email" msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "" @@ -2252,7 +2212,6 @@ msgstr "" msgid "Please enter a username or email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "" @@ -2440,7 +2399,6 @@ msgstr "" msgid "Error sending email." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "" @@ -2453,10 +2411,6 @@ msgstr "" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "" @@ -2467,12 +2421,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "" @@ -2726,7 +2674,6 @@ msgstr "" msgid "System got into invalid state for submission: " msgstr "" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(隱藏)" @@ -2820,7 +2767,7 @@ msgstr "" msgid "enter link description here" msgstr "" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "" @@ -2890,6 +2837,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2911,7 +2862,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2919,7 +2870,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3087,6 +3038,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3133,18 +3092,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3153,7 +3100,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "" @@ -3187,7 +3133,7 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3198,7 +3144,6 @@ msgstr "" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "" @@ -3297,8 +3242,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3507,7 +3452,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3565,8 +3509,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3606,17 +3578,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3625,11 +3586,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3704,8 +3660,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3810,7 +3765,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3849,7 +3803,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3877,7 +3830,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -3992,14 +3944,9 @@ msgstr "" msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4108,7 +4055,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4276,7 +4222,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4334,6 +4279,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4505,6 +4454,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4783,7 +4740,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4851,6 +4807,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4861,10 +4831,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4890,12 +4868,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -4995,7 +4971,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5066,10 +5041,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5202,7 +5173,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5281,7 +5251,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5335,7 +5304,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5455,15 +5423,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5473,11 +5435,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5493,7 +5452,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5518,8 +5476,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5546,8 +5502,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.mo b/conf/locale/zh_TW/LC_MESSAGES/django.mo index 2a1674f7c8..efedcdf880 100644 Binary files a/conf/locale/zh_TW/LC_MESSAGES/django.mo and b/conf/locale/zh_TW/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.po b/conf/locale/zh_TW/LC_MESSAGES/django.po index c652e07425..d64d7c3edd 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/django.po +++ b/conf/locale/zh_TW/LC_MESSAGES/django.po @@ -111,7 +111,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:02+0000\n" +"POT-Creation-Date: 2015-02-23 18:31+0000\n" "PO-Revision-Date: 2014-12-30 16:21+0000\n" "Last-Translator: LIU,SHU-HAO \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" @@ -139,11 +139,10 @@ msgstr "" #. Translators: 'Discussion' refers to the tab in the courseware that leads to #. the discussion forums #: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +#: common/lib/xmodule/xmodule/tabs.py msgid "Discussion" msgstr "討論" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html msgid "Problem" @@ -156,7 +155,6 @@ msgstr "進階" #: cms/djangoapps/contentstore/views/helpers.py #: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py #: cms/templates/course_outline.html lms/templates/seq_module.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section" @@ -182,10 +180,8 @@ msgstr "完成" #: lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html msgid "Name" msgstr "名稱" @@ -277,6 +273,82 @@ msgstr "" msgid "Blacklist {country} for {course}" msgstr "" +#: common/djangoapps/student/forms.py +msgid "Username must be minimum of two characters long" +msgstr "使用者名稱必須是至少有兩個字符長" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "使用者名稱應當包含英文字母A-Z,阿拉伯數字0-9,並且不能包含空格。" + +#: common/djangoapps/student/forms.py +msgid "Username cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "您必須接受本服務條款。" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "您必須遵循榮譽準則才能註冊。" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Username and password fields cannot match" +msgstr "" + +#: common/djangoapps/student/forms.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + #: common/djangoapps/student/middleware.py msgid "" "Your account has been disabled. If you believe this was done in error, " @@ -297,7 +369,7 @@ msgstr "" #. Translators: 'Other' refers to the student's gender #. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py common/djangoapps/student/models.py +#: common/djangoapps/student/models.py msgid "Other" msgstr "" @@ -354,6 +426,13 @@ msgid "" "0_0dPSPyS070e0HsE9HNz_13_d11_" msgstr "" +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + #: common/djangoapps/student/models.py msgid "{platform_name} Certificate for {course_name}" msgstr "" @@ -470,102 +549,6 @@ msgstr "使用者名稱'{username}'對應的帳戶已經存在。" msgid "An account with the Email '{email}' already exists." msgstr "電子郵件 '{email}' 對應的帳戶已存在。" -#: common/djangoapps/student/views.py -msgid "Error (401 {field}). E-mail us." -msgstr "錯誤(401 {field}),請發電子郵件給我們。" - -#: common/djangoapps/student/views.py -msgid "To enroll, you must follow the honor code." -msgstr "您必須遵循榮譽準則才能註冊。" - -#: common/djangoapps/student/views.py -msgid "You must accept the terms of service." -msgstr "您必須接受本服務條款。" - -#: common/djangoapps/student/views.py -msgid "Username must be minimum of two characters long" -msgstr "使用者名稱必須是至少有兩個字符長" - -#: common/djangoapps/student/views.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A valid password is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Accepting Terms of Service is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Agreeing to the Honor Code is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Email cannot be more than {num} characters long" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Valid e-mail is required." -msgstr "需要有效的電子郵件地址。" - -#: common/djangoapps/student/views.py -msgid "Username should only consist of A-Z and 0-9, with no spaces." -msgstr "使用者名稱應當包含英文字母A-Z,阿拉伯數字0-9,並且不能包含空格。" - -#: common/djangoapps/student/views.py common/djangoapps/student/views.py -msgid "Password: " -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Username and password fields cannot match" -msgstr "" - -#: common/djangoapps/student/views.py -msgid "Could not send activation e-mail." -msgstr "無法寄送啟動帳號的信件。" - #: common/djangoapps/student/views.py msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "未知錯誤。請給我們發電子郵件,告知錯誤是如何發生的。" @@ -624,7 +607,7 @@ msgstr "無法透過email寄出啟動連結,請稍後再試。" msgid "Name required" msgstr "需要姓名。" -#: common/djangoapps/student/views.py common/djangoapps/student/views.py +#: common/djangoapps/student/views.py msgid "Invalid ID" msgstr "無效的 ID" @@ -1057,7 +1040,7 @@ msgstr "錯誤" msgid "incomplete" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "unanswered" msgstr "" @@ -1070,7 +1053,7 @@ msgstr "" msgid "ChoiceGroup: unexpected tag {tag_name}" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Answer received." msgstr "" @@ -1109,7 +1092,7 @@ msgstr "" msgid "Cannot connect to the queue" msgstr "" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "No formula specified." msgstr "" @@ -1117,7 +1100,7 @@ msgstr "" msgid "Couldn't parse formula: {error_msg}" msgstr "無法解析方程式:{error_msg}" -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +#: common/lib/capa/capa/inputtypes.py msgid "Error while rendering preview" msgstr "繪製預覽時發生錯誤" @@ -1156,13 +1139,11 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Checkboxes" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Multiple Choice" msgstr "" @@ -1194,17 +1175,15 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Dropdown" msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Numerical Input" msgstr "" -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +#: common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -1247,7 +1226,6 @@ msgstr "" #: common/lib/capa/capa/responsetypes.py #: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html msgid "Text Input" msgstr "" @@ -1398,7 +1376,6 @@ msgstr "" #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/discussion_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/imageannotation_module.py #: common/lib/xmodule/xmodule/library_content_module.py #: common/lib/xmodule/xmodule/lti_module.py @@ -1430,7 +1407,6 @@ msgstr "註解" #: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/combined_open_ended_module.py #: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py msgid "This name appears in the horizontal navigation at the top of the page." msgstr "" @@ -1482,7 +1458,6 @@ msgid "" "in Advanced Settings." msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Always" msgstr "" @@ -1511,7 +1486,6 @@ msgstr "" msgid "Past Due" msgstr "" -#: common/lib/xmodule/xmodule/capa_base.py #: common/lib/xmodule/xmodule/capa_base.py msgid "Never" msgstr "" @@ -1652,8 +1626,6 @@ msgstr "" #. Translators: 'closed' means the problem's due date has passed. You may no #. longer attempt to solve the problem. #: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py msgid "Problem is closed." msgstr "" @@ -2168,12 +2140,6 @@ msgstr "" msgid "Use your course outline to build your first Section and Subsection." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Outline" msgstr "" @@ -2292,9 +2258,6 @@ msgid "" "your course." msgstr "" -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/course_module.py #: common/lib/xmodule/xmodule/course_module.py msgid "Edit Course Schedule & Details" msgstr "" @@ -2531,7 +2494,6 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html msgid "About" msgstr "關於" @@ -2607,8 +2569,6 @@ msgstr "" msgid "Text" msgstr "" -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/html_module.py #: common/lib/xmodule/xmodule/peer_grading_module.py msgid "Html contents to display for this module" @@ -3187,7 +3147,7 @@ msgid "Wiki" msgstr "Wiki" #: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Textbooks" msgstr "教材" @@ -3444,7 +3404,6 @@ msgid "" msgstr "" #: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html @@ -3587,7 +3546,6 @@ msgstr "授課教師評分" #. Translators: "AI-Assessment" refers to the machine-graded mode of openended #. evaluation #: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py msgid "AI-Assessment" msgstr "" @@ -3635,7 +3593,6 @@ msgstr "目前無法將您的答案送交評分,請稍後再試。" #. are sent to, either to be machine-graded, peer-graded, or instructor- #. graded. #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "Error getting feedback from grader." msgstr "取得評分結果時發生錯誤。" @@ -3673,7 +3630,6 @@ msgstr "處理中" #. Translators: "Done" communicates to a student that their response #. has been fully graded #: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py -#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py msgid "Done" msgstr "" @@ -3972,15 +3928,12 @@ msgstr "搜尋" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html -#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "版權" -#: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/class_dashboard/dashboard_data.py #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py msgid "Username" msgstr "使用者名稱" @@ -4087,6 +4040,22 @@ msgstr "使用者 {username} 並不存在。" msgid "User {username} has never accessed problem {location}" msgstr "" +#: lms/djangoapps/courseware/views.py +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views.py lms/templates/courseware/progress.html +msgid "Creating certificate" +msgstr "" + #: lms/djangoapps/courseware/features/video.py msgid "ERROR: No playable video sources found!" msgstr "錯誤:找不到可播放的影音來源!" @@ -4135,7 +4104,6 @@ msgstr "" #: lms/djangoapps/dashboard/support.py #: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html msgid "Email Address" msgstr "" @@ -4194,7 +4162,7 @@ msgstr "固定的密碼。" msgid "All ok!" msgstr "全部 OK!" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Must provide username" msgstr "必須提供使用者名稱" @@ -4259,12 +4227,11 @@ msgstr "總用戶數" msgid "Courses loaded in the modulestore" msgstr "Modulestore 中載入的課程" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/templates/tracking_log.html +#: lms/djangoapps/dashboard/sysadmin.py lms/templates/tracking_log.html msgid "username" msgstr "使用者名稱" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "email" msgstr "電子郵件" @@ -4327,7 +4294,7 @@ msgstr "" msgid "Loaded course {course_name}
Errors:" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "Course Name" msgstr "課程名稱" @@ -4361,7 +4328,7 @@ msgstr "錯誤 - 無法取得ID為 {0}的課程
{1}
" msgid "Deleted" msgstr "已刪除" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/sysadmin.py msgid "course_id" msgstr "course_id" @@ -4395,22 +4362,10 @@ msgid "" " and optionally specified directory." msgstr "" -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Re-open thread" -msgstr "重新開啟討論串" - -#: lms/djangoapps/django_comment_client/mustache_helpers.py -msgid "Close thread" -msgstr "關閉討論串" - -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Title can't be empty" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Body can't be empty" msgstr "" @@ -4419,7 +4374,6 @@ msgstr "" msgid "Topic doesn't exist" msgstr "" -#: lms/djangoapps/django_comment_client/base/views.py #: lms/djangoapps/django_comment_client/base/views.py msgid "Comment level too deep" msgstr "評論深度過深" @@ -4520,12 +4474,9 @@ msgstr "" #. form meant to hold the user's email address. #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py lms/templates/dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Email" msgstr "電子郵件" @@ -4633,18 +4584,14 @@ msgstr "" msgid "coupon id is None" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) is already inactive" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon with the coupon id ({coupon_id}) updated successfully" msgstr "" @@ -4675,7 +4622,6 @@ msgstr "" msgid "coupon with the coupon code ({code}) already exists for this course" msgstr "" -#: lms/djangoapps/instructor/views/coupons.py #: lms/djangoapps/instructor/views/coupons.py msgid "coupon id not found" msgstr "" @@ -4784,7 +4730,6 @@ msgstr "" msgid "Invalid assignment name '{name}'" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py msgid "External email" msgstr "外部電子郵件" @@ -4901,7 +4846,6 @@ msgstr "" msgid "No due date extension is set for that student and unit." msgstr "" -#: lms/djangoapps/instructor/views/tools.py #: lms/djangoapps/instructor/views/tools.py msgid "Extended Due Date" msgstr "延長截止日期" @@ -4965,7 +4909,6 @@ msgstr "" msgid "cohorted" msgstr "" -#: lms/djangoapps/instructor_task/views.py #: lms/djangoapps/instructor_task/views.py msgid "No status information available" msgstr "無狀態資訊可檢視" @@ -5214,7 +5157,6 @@ msgstr "檢視您過去提交要批改的開放式問題。" msgid "View submissions that have been flagged by students as inappropriate." msgstr "檢視已經被學生標記為不適當的提交意見 。" -#: lms/djangoapps/open_ended_grading/views.py #: lms/djangoapps/open_ended_grading/views.py msgid "New submissions to grade" msgstr "提交新的評分工作" @@ -5268,7 +5210,7 @@ msgid "" "negative amounts for refunds." msgstr "" -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py +#: lms/djangoapps/shoppingcart/models.py msgid "Lower-case ISO currency codes" msgstr "" @@ -5358,8 +5300,7 @@ msgstr "" msgid "Page {page_number} of {page_count}" msgstr "" -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -#: lms/templates/shoppingcart/receipt.html +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html msgid "Invoice" msgstr "" @@ -5453,7 +5394,6 @@ msgstr "退款日期" msgid "Amount of Refund" msgstr "退款金額" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Service Fees (if any)" msgstr "服務費 (如果有的話)" @@ -5483,12 +5423,10 @@ msgstr "貨幣" msgid "Comments" msgstr "評論" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "University" msgstr "大學" -#: lms/djangoapps/shoppingcart/reports.py #: lms/djangoapps/shoppingcart/reports.py msgid "Course" msgstr "課程" @@ -5582,7 +5520,7 @@ msgstr "" msgid "Course added to cart." msgstr "增加課程到購物車。" -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/views.py msgid "Discount does not exist against code '{code}'." msgstr "" @@ -5619,7 +5557,6 @@ msgstr "您沒有權限檢視此頁面。" msgid "The payment processor did not return a required parameter: {0}" msgstr "付款處理器沒有返回所需的參數:{0}" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "The payment processor returned a badly-typed value {0} for param {1}." msgstr "對於參數 {1} ,付款處理器返回一個錯誤類型值 {0} 。" @@ -5749,7 +5686,6 @@ msgid "" "payment" msgstr "帳戶中的資金不足。可能的解決方法:重試另一種付款方式" -#: lms/djangoapps/shoppingcart/processors/CyberSource.py #: lms/djangoapps/shoppingcart/processors/CyberSource.py msgid "Unknown reason" msgstr "未知的原因" @@ -6095,7 +6031,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Take photo" msgstr "照相" @@ -6201,7 +6136,6 @@ msgstr "" msgid "Refund Request Time:" msgstr "" -#: lms/templates/registration/password_reset_complete.html #: lms/templates/registration/password_reset_complete.html msgid "Your Password Reset is Complete" msgstr "您的密碼已重設完成" @@ -6397,7 +6331,6 @@ msgstr "刪除文章" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete" msgstr "刪除" @@ -6448,10 +6381,7 @@ msgstr "預覽" #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html -#: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/help_modal.html lms/templates/signup_modal.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html @@ -6472,10 +6402,7 @@ msgstr "Wiki預覽" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard.html +#: lms/templates/wiki/includes/cheatsheet.html lms/templates/dashboard.html #: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "" @@ -6513,7 +6440,7 @@ msgstr "自動日誌:" msgid "Change" msgstr "修改" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Merge selected with current..." msgstr "合併選擇項和當前項..." @@ -6525,11 +6452,11 @@ msgstr "切換到選擇的版本" msgid "Wiki Revision Preview" msgstr "預覽Wiki修訂版" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Back to history view" msgstr "返回歷史檢視" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Switch to this version" msgstr "切換到這個版本" @@ -6551,7 +6478,7 @@ msgstr "當您給當前修訂版加入一個修改,所有的資料都會被保 msgid "After this, it's important to do a manual review." msgstr "請在完成之後做人工審查。" -#: lms/templates/wiki/history.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html msgid "Create new merged version" msgstr "創建新的已合併後的版本" @@ -6782,12 +6709,9 @@ msgstr "" #. Translators: This example email address is used as a placeholder in #. a field on the password reset form meant to hold the user's email address. #: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_api/views.py msgid "username@domain.com" msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "The email address you used to register with {platform_name}" msgstr "" @@ -6797,21 +6721,13 @@ msgstr "" #. meant to hold the user's password. #. Translators: This label appears above a field on the registration form #. meant to hold the user's password. -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py cms/templates/login.html #: cms/templates/register.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register.html #: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html msgid "Password" msgstr "" -#: openedx/core/djangoapps/user_api/views.py -msgid "" -"It looks like {email_address} and {username} belong to an existing account. " -"Try again with a different email address and username." -msgstr "" - #: openedx/core/djangoapps/user_api/views.py msgid "" "It looks like {email_address} belongs to an existing account. Try again with" @@ -6882,8 +6798,6 @@ msgid "Please select your Country." msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" msgstr "榮譽守則" @@ -6892,23 +6806,19 @@ msgstr "榮譽守則" msgid "Terms of Service and Honor Code" msgstr "服務條款和榮譽守則" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "I agree to the {platform_name} {terms_of_service}." msgstr "" -#: openedx/core/djangoapps/user_api/views.py #: openedx/core/djangoapps/user_api/views.py msgid "You must agree to the {platform_name} {terms_of_service}." msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html msgid "Terms of Service" msgstr "服務條款" -#: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." msgstr "無效課程更新ID。" @@ -7023,7 +6933,6 @@ msgid "" "number. Please change either organization or course number to be unique." msgstr "" -#: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py msgid "" "Please change either the organization or course number so that it is unique." @@ -7056,7 +6965,11 @@ msgid "must have at least one group" msgstr "" #: cms/djangoapps/contentstore/views/course.py -msgid "This Group Configuration is already in use and cannot be removed." +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." msgstr "" #: cms/djangoapps/contentstore/views/export_git.py @@ -7270,8 +7183,7 @@ msgstr "找不到頁面" #: cms/templates/asset_index.html cms/templates/container.html #: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: lms/templates/courseware/legacy_instructor_dashboard.html +#: cms/templates/library.html #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/edxnotes/edxnotes.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -7283,13 +7195,8 @@ msgstr "" msgid "close" msgstr "關閉" -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/modal/accessible_confirm.html #: lms/templates/verify_student/face_upload.html @@ -7309,7 +7216,7 @@ msgstr "" #: cms/templates/group_configurations.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" msgstr "設定" @@ -7318,13 +7225,11 @@ msgstr "設定" msgid "Error:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" @@ -7339,10 +7244,8 @@ msgstr "課程" #: cms/templates/login.html cms/templates/register.html #: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/provider_login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "E-mail" msgstr "電子郵件" @@ -7352,7 +7255,7 @@ msgstr "電子郵件" #: cms/templates/login.html cms/templates/manage_users.html #: cms/templates/manage_users_lib.html cms/templates/register.html #: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: username@domain.com" msgstr "例:username@domain.com" @@ -7384,14 +7287,13 @@ msgstr "例:Jane Doe" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html msgid "Public Username" msgstr "公開使用者名稱" #. Translators: This is the placeholder text for a field that asks the user to #. pick a username #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "example: JaneDoe" msgstr "例:JaneDoe" @@ -7405,7 +7307,7 @@ msgid "Requirements" msgstr "" #: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html +#: lms/templates/module-error.html msgid "Details" msgstr "細節" @@ -7432,13 +7334,11 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/footer-edx-new.html #: lms/templates/footer.html lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html msgid "Privacy Policy" msgstr "隱私權保護政策" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html #: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "幫助" @@ -7459,7 +7359,6 @@ msgstr "" msgid "Now choose your course track:" msgstr "" -#: common/templates/course_modes/choose.html #: common/templates/course_modes/choose.html msgid "Pursue a Verified Certificate" msgstr "" @@ -7542,7 +7441,7 @@ msgstr "新的" msgid "Dashboard" msgstr "儀表板" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "編輯" @@ -7586,7 +7485,7 @@ msgstr "" msgid "Order History" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Reset Password" msgstr "重置密碼" @@ -7594,7 +7493,7 @@ msgstr "重置密碼" msgid "Current Courses" msgstr "" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Looks like you haven't enrolled in any courses yet." msgstr "看起來您似乎尚未加入任何課程。" @@ -7628,7 +7527,7 @@ msgid "" "your password." msgstr "一封郵件已經被發送至 {email},請點擊郵件中的連結更改您的密碼。" -#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html msgid "Change Email" msgstr "變更電子郵件信箱" @@ -7679,15 +7578,6 @@ msgstr "更改我的姓名" #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Unenroll" msgstr "取消註冊" @@ -7751,7 +7641,7 @@ msgstr "被拒絕的學生:" msgid "Debug: " msgstr "除錯:" -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +#: lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "外部認證失敗" @@ -7788,7 +7678,7 @@ msgstr "已提交" msgid "Puzzle Leaderboard" msgstr "答題排行榜" -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "About edX" msgstr "" @@ -7831,13 +7721,11 @@ msgstr "" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html msgid "Contact" msgstr "聯繫我們" #: lms/templates/footer-edx-new.html lms/templates/footer.html #: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html msgid "FAQ" msgstr "常見問題" @@ -7859,31 +7747,31 @@ msgstr "" #. Translators: This is the website name of www.twitter.com. Please #. translate this the way that Twitter advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Twitter" msgstr "" #. Translators: This is the website name of www.facebook.com. Please #. translate this the way that Facebook advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Facebook" msgstr "" #. Translators: This is the website name of www.meetup.com. Please #. translate this the way that Meetup advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Meetup" msgstr "" #. Translators: This is the website name of www.linked.com. Please #. translate this the way that LinkedIn advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "LinkedIn" msgstr "" #. Translators: This is the website name of plus.google.com. Please #. translate this the way that Google+ advertises in your language. -#: lms/templates/footer-edx-new.html lms/templates/footer-edx-new.html +#: lms/templates/footer-edx-new.html msgid "Google+" msgstr "" @@ -7900,7 +7788,6 @@ msgid "Android app on Google Play" msgstr "" #: lms/templates/footer.html lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html msgid "Jobs" msgstr "工作" @@ -7916,7 +7803,6 @@ msgstr "" msgid "Powered by Open edX" msgstr "" -#: lms/templates/forgot_password_modal.html #: lms/templates/forgot_password_modal.html msgid "Password Reset" msgstr "密碼重置" @@ -7943,7 +7829,7 @@ msgstr "重置我的密碼" msgid "Email is incorrect." msgstr "電子郵件信箱不正確。" -#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "{platform_name} 幫助" @@ -8006,8 +7892,6 @@ msgstr "附上錯誤消息以及導致錯誤的步驟等" #: lms/templates/combinedopenended/openended/open_ended.html #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/instructor/staff_grading.html #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html #: lms/templates/survey/survey.html @@ -8145,7 +8029,7 @@ msgstr[0] "" msgid "Helpful Information" msgstr "説明資訊" -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +#: lms/templates/login-sidebar.html msgid "Login via OpenID" msgstr "透過OpenID登入" @@ -8334,7 +8218,7 @@ msgstr "原始資料:" msgid "Accepted" msgstr "接受" -#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" msgstr "錯誤" @@ -8355,17 +8239,15 @@ msgstr "確認" msgid "Reject" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "How it Works" msgstr "運行機制" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Find Courses" msgstr "尋找課程" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html +#: lms/templates/navigation-edx.html msgid "Schools & Partners" msgstr "" @@ -8385,13 +8267,11 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/register.html +#: lms/templates/navigation-edx.html lms/templates/register.html msgid "Register" msgstr "註冊" -#: lms/templates/navigation-edx.html lms/templates/navigation-edx.html -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation-edx.html lms/templates/navigation.html msgid "Sign in" msgstr "" @@ -8409,7 +8289,7 @@ msgstr "全球導航" msgid "Schools" msgstr "學校" -#: lms/templates/navigation.html lms/templates/navigation.html +#: lms/templates/navigation.html msgid "Register Now" msgstr "立刻註冊" @@ -8474,7 +8354,6 @@ msgid "The following errors occurred while processing your registration:" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "" "Required fields are noted by bold text and an " "asterisk (*)." @@ -8485,7 +8364,6 @@ msgid "Enter a public username:" msgstr "輸入一個公開的使用者名稱:" #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html msgid "Will be shown in any discussions or forums you participate in" msgstr "將會顯示在您參加的任何討論或論壇上" @@ -8612,11 +8490,11 @@ msgstr "" msgid "Please complete the following fields to register for an account. " msgstr "請完整填寫下列欄位以註冊帳戶。" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "Needed for any certificates you may earn" msgstr "對您可能獲得的任何證書都是必需的" -#: lms/templates/register.html lms/templates/register.html +#: lms/templates/register.html msgid "cannot be changed later" msgstr "之後無法更改" @@ -8669,12 +8547,12 @@ msgstr "" "您已在{platform_name}上重新啟用論壇的通知郵件功能。點擊{dashboard_link_start}這裡{link_end} " "回到您的主頁。" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" msgstr "上一個" -#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" msgstr "下一個" @@ -8683,15 +8561,15 @@ msgstr "下一個" msgid "Sign Up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "例如:yourname@domain.com" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "例如:您的名字(顯示於論壇上)" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "例如:您的名字(用於證書)" @@ -8792,7 +8670,7 @@ msgstr "" msgid "Rescore Student Submission" msgstr "重新評定該學生的答案" -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +#: lms/templates/staff_problem_info.html msgid "Module Fields" msgstr "模組欄位" @@ -8848,7 +8726,6 @@ msgstr "工作人員及註冊資訊" #. Translators: refers to http://git-scm.com/docs/git-log #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" msgstr "Git日誌" @@ -8926,6 +8803,18 @@ msgstr "從網站中刪除課程" msgid "Platform Version" msgstr "平台版本" +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + #. Translators: Git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for {course_id}" @@ -8940,6 +8829,11 @@ msgstr "日期" msgid "Git Action" msgstr "Git動作" +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + #. Translators: git is a version-control system; see http://git-scm.com/about #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "No git import logs have been recorded for this course." @@ -9080,7 +8974,7 @@ msgstr "回到字幕的起始點。" msgid "Download video" msgstr "下載影片" -#: lms/templates/video.html lms/templates/video.html +#: lms/templates/video.html msgid "Download transcript" msgstr "" @@ -9096,7 +8990,6 @@ msgstr "您的話:" msgid "Total number of words:" msgstr "總字數:" -#: lms/templates/calculator/toggle_calculator.html #: lms/templates/calculator/toggle_calculator.html msgid "Open Calculator" msgstr "開啟計算機" @@ -9433,8 +9326,6 @@ msgstr "{chapter},目前章節" msgid "due {date}" msgstr "到期日 {date}" -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html #: lms/templates/courseware/mktg_course_about.html msgid "An error occurred. Please try again later." @@ -9494,12 +9385,10 @@ msgstr "概述" msgid "Share with friends and family!" msgstr "與朋友和家人分享!" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Tweet that you've registered for this course" msgstr "" -#: lms/templates/courseware/course_about.html #: lms/templates/courseware/course_about.html msgid "Email someone to say you've registered for this course" msgstr "" @@ -9553,6 +9442,17 @@ msgstr "" msgid "Additional Resources" msgstr "額外資源" +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "註冊" + +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "enroll" +msgstr "" + #: lms/templates/courseware/course_navigation.html msgid "View this course as:" msgstr "" @@ -9631,7 +9531,7 @@ msgid "No content has been added to this course" msgstr "" #: lms/templates/courseware/courseware.html -msgid "Course Utilities Navigation" +msgid "Course Utilities" msgstr "" #: lms/templates/courseware/error-message.html @@ -9667,11 +9567,11 @@ msgstr "" msgid "View Updates in Studio" msgstr "在Studio中檢視更新" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Course Updates & News" msgstr " 公佈欄" -#: lms/templates/courseware/info.html lms/templates/courseware/info.html +#: lms/templates/courseware/info.html msgid "Handout Navigation" msgstr "講義導覽" @@ -9679,7 +9579,6 @@ msgstr "講義導覽" msgid "Course Handouts" msgstr "課程講義" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Legacy Instructor Dashboard" msgstr "傳統教師儀表板" @@ -9733,7 +9632,6 @@ msgstr "管理小組" msgid "Grade Downloads" msgstr "成績下載" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "Note: some of these buttons are known to time out for larger courses. We " @@ -9764,7 +9662,6 @@ msgid "" "gradebook, for this to work properly!" msgstr "這門課程的作業必須與儲存在成績單上的評分型式一致,否則系統會出現錯誤。" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Gradebook name:" msgstr "成績單名稱:" @@ -9778,7 +9675,6 @@ msgstr "作業名稱:" msgid "Course-specific grade adjustment" msgstr "調整特定課程分數" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "" "To perform these actions, visit the Student Admin section of the Instructor " @@ -9813,7 +9709,6 @@ msgstr "招生數據" msgid "Pull enrollment from remote gradebook" msgstr "從遠程成績單中獲取註冊人數" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "Section:" msgstr "章節:" @@ -9858,7 +9753,6 @@ msgstr "日" #: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html msgid "Students" msgstr "學生" @@ -9949,7 +9843,6 @@ msgstr "持續時間(秒)" msgid "Task Progress" msgstr "任務進度" -#: lms/templates/courseware/legacy_instructor_dashboard.html #: lms/templates/courseware/legacy_instructor_dashboard.html msgid "unknown" msgstr "未知" @@ -10036,7 +9929,17 @@ msgid "Course Progress for Student '{username}' ({email})" msgstr "學生 '{username}' ({email}) 的課程進度" #: lms/templates/courseware/progress.html -msgid "Download your certificate" +msgid "" +"You can download your certificate as a PDF. You can then print your " +"certificate or share it with others." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Create Your Certificate" msgstr "" #: lms/templates/courseware/progress.html @@ -10102,7 +10005,6 @@ msgstr "" msgid "Your {cert_name_short} is Generating" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "This link will open/download a PDF document" msgstr "這個連結會打開或下載一個PDF文件" @@ -10111,21 +10013,6 @@ msgstr "這個連結會打開或下載一個PDF文件" msgid "Download {cert_name_short} (PDF)" msgstr "" -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" msgstr "" @@ -10144,11 +10031,25 @@ msgstr "" msgid "Complete our course feedback survey" msgstr "完成我們的課程回饋調查" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Home Page" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "{course_number} {course_name} Cover Image" msgstr "{course_number} {course_name} 封面圖片" @@ -10157,11 +10058,6 @@ msgstr "{course_number} {course_name} 封面圖片" msgid "Your verification is pending" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Enrolled as: " msgstr "登記為:" @@ -10182,7 +10078,6 @@ msgstr "" msgid "You're enrolled as a verified student" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "ID Verified Ribbon/Badge" msgstr "" @@ -10192,7 +10087,6 @@ msgstr "" msgid "Verified" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You're enrolled as an honor code student" msgstr "" @@ -10250,7 +10144,6 @@ msgstr "" msgid "Verify Now" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "You have already verified your ID!" msgstr "" @@ -10304,44 +10197,33 @@ msgid "" "{unenroll_link_start}unenroll{unenroll_link_end} from this course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "View Archived Course" msgstr "查看已存檔的課程" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/shoppingcart/registration_code_receipt.html msgid "View Course" msgstr "檢視課程" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from the purchased course" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unenroll from" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "Are you sure you want to unenroll from the verified {cert_name_long} track " "of" msgstr "" -#: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "電子郵件設定" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" @@ -10357,7 +10239,6 @@ msgstr "" msgid "{course_name}: Re-verify by {date}" msgstr "" -#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" msgstr "" @@ -10399,7 +10280,6 @@ msgstr "" msgid "Approved:" msgstr "" -#: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" msgstr "身分驗證狀態" @@ -10597,9 +10477,7 @@ msgstr "編輯發表" msgid "Edit post title" msgstr "編輯文章標題" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html wiki/forms.py -#: wiki/forms.py wiki/forms.py msgid "Title" msgstr "標題" @@ -10611,7 +10489,6 @@ msgstr "更新發表" msgid "Show Comments (%(num_comments)s)" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" msgstr "新增評論" @@ -10632,7 +10509,6 @@ msgstr "" msgid "endorsed %(time_ago)s" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Reported" msgstr "" @@ -10797,7 +10673,6 @@ msgstr "" #. Translators: This is the label for a control to #. select a forum post type #: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html msgid "Post type:" msgstr "" @@ -10816,7 +10691,6 @@ msgstr "" msgid "Topic Area:" msgstr "" -#: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Filter topics" msgstr "" @@ -10927,7 +10801,6 @@ msgstr "論壇現在正在維護,將儘快恢復正常。" msgid "User Profile" msgstr "使用者資料" -#: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" @@ -11658,8 +11531,6 @@ msgstr "被標記為不恰當的內容,需要再次審查" msgid "Skip" msgstr "跳過" -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Add Coupon" @@ -11719,12 +11590,10 @@ msgstr "課程顯示名稱:" msgid "Has the course started?" msgstr "課程開始了嗎?" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" msgstr "是的" -#: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" msgstr "還沒" @@ -11862,7 +11731,6 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Create Enrollment Codes" msgstr "" @@ -12010,7 +11878,6 @@ msgstr "" msgid "Please enter the company contact email" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html #: lms/templates/instructor/instructor_dashboard_2/e-commerce.html msgid "Please enter the valid email address" msgstr "" @@ -12075,7 +11942,6 @@ msgstr "" msgid "Edit Coupon" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html #: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html msgid "Update Coupon" msgstr "" @@ -12105,24 +11971,16 @@ msgid "" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "Specify the {platform_name} email address or username of a student here:" msgstr "請輸入在{platform_name}上學生的電子郵件地址或是使用者名稱:" #: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student Email or Username" msgstr "學生的電子郵件或使用者名稱" -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" msgstr "" @@ -12190,7 +12048,6 @@ msgstr "" msgid "* Required Information" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html #: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html msgid "Organization Name" msgstr "" @@ -12304,7 +12161,6 @@ msgstr "載入問題列表..." msgid "Gender Distribution" msgstr "性別分佈" -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" msgstr "教師儀表板" @@ -12317,7 +12173,6 @@ msgstr "回歸傳統界面儀表板" msgid "Batch Enrollment" msgstr "批次招生" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." @@ -12329,12 +12184,10 @@ msgid "" " spelling." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "自動註冊" @@ -12356,22 +12209,16 @@ msgstr "" msgid "Checking this box has no effect if 'Unenroll' is selected." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" msgstr "透過電子郵件通知使用者" -#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enroll" -msgstr "註冊" - #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Register/Enroll Students" msgstr "" @@ -12560,7 +12407,6 @@ msgid "" "subsection." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "You can also download this data as a CSV file." msgstr "" @@ -12595,12 +12441,10 @@ msgstr "" msgid "Download Student Grades as a CSV" msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" msgstr "發送電子郵件" @@ -12613,12 +12457,10 @@ msgstr "發至:" msgid "Myself" msgstr "我自己" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" msgstr "員工與教師" -#: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" msgstr "所有人(學生,員工和教師)" @@ -12699,7 +12541,6 @@ msgstr "" msgid "Show Email Task History" msgstr "顯示郵件遞送任務歷史" -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html #: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html msgid "Set Course Mode Price" msgstr "" @@ -12738,19 +12579,16 @@ msgstr "學生進度頁面" msgid "Student-specific grade adjustment" msgstr "調整特定學生分數" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a problem in the course here with its complete location:" msgstr "請輸入在課程中特定問題的完整位置:" -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem location" msgstr "" #. Translators: A location (string of text) follows this sentence. #: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You must provide the complete location of the problem. In the Staff Debug " "viewer, the location looks like this:" @@ -13103,7 +12941,6 @@ msgstr "我們已經給您的郵箱發送郵件,您應該能夠很快收到, #: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html msgid "Billing Details" msgstr "" @@ -13125,7 +12962,6 @@ msgstr "" msgid "Purchase order number (if any)" msgstr "" -#: lms/templates/shoppingcart/billing_details.html #: lms/templates/shoppingcart/billing_details.html msgid "email@example.com" msgstr "" @@ -13309,15 +13145,10 @@ msgid " {course_name} " msgstr "" #: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Price per student:" msgstr "" -#: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/shopping_cart.html msgid "Discount Applied:" @@ -13424,7 +13255,6 @@ msgid "" "{link_start}dashboard{link_end} to see the course." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "{course_names} has been removed because the enrollment period has closed." @@ -13450,19 +13280,16 @@ msgstr "" msgid "TOTAL:" msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "" "After this purchase is complete, a receipt is generated with relative " "billing details and registration codes for students." msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "After this purchase is complete," msgstr "" -#: lms/templates/shoppingcart/shopping_cart.html #: lms/templates/shoppingcart/shopping_cart.html msgid "will be enrolled in this course." msgstr "" @@ -13517,12 +13344,10 @@ msgid "" "here for possible use by installations of Open edX." msgstr "" -#: lms/templates/static_templates/blog.html #: lms/templates/static_templates/blog.html msgid "Blog" msgstr "" -#: lms/templates/static_templates/donate.html #: lms/templates/static_templates/donate.html msgid "Donate" msgstr "" @@ -13535,14 +13360,11 @@ msgid "" "export controls, and we cannot allow you to access this course." msgstr "" -#: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" msgstr "媒體工具箱" #: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" msgstr "新聞" @@ -13816,7 +13638,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." @@ -13824,19 +13645,16 @@ msgstr "您沒有看到您的照片嗎?請去您的瀏覽器中確認是否允 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Retake" msgstr "重拍" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Looks good" msgstr "看起來不錯" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Tips on taking a successful photo" msgstr "拍一張成功照片的秘訣" @@ -13857,7 +13675,6 @@ msgstr "我們可以將您拍攝的相片與您的ID匹配嗎?" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Once in position, use the camera button" msgstr "一旦到位,使用相機按鈕。" @@ -13868,19 +13685,16 @@ msgstr "拍攝您的相片。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Use the checkmark button" msgstr "使用和曲標記按鈕。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "once you are happy with the photo" msgstr "一旦您對這張照片感到高興" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "Common Questions" msgstr "常見問題" @@ -13898,7 +13712,6 @@ msgstr "作為驗證的一部分,我們需要您的照片去確認您的身分 #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html -#: lms/templates/verify_student/photo_reverification.html msgid "What do you do with this picture?" msgstr "這是您做甚麼的照片?" @@ -13971,7 +13784,6 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -13987,15 +13799,10 @@ msgstr "" msgid "You currently need to re-verify for the following courses:" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" msgstr "" -#: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify for {course_number}" msgstr "" @@ -14219,7 +14026,6 @@ msgid "" "below." msgstr "請仔細閱讀相關的照片,並確保它們滿足下列要求。" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo above needs to meet the following requirements:" msgstr "上面的照片需要滿足以下要求:" @@ -14232,7 +14038,6 @@ msgstr "良好的照明" msgid "Show your whole face" msgstr "顯示您的整張臉" -#: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "The photo on your ID must match the photo of your face" msgstr "您照片上的ID必須匹配您照片中的臉" @@ -14288,7 +14093,6 @@ msgstr "我們收到了您重新提交的資訊,並將稍後進行審查以核 msgid "Return to Your Dashboard" msgstr "回到您的儀表板" -#: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" msgstr "" @@ -14303,9 +14107,6 @@ msgstr "" msgid "Please contact support if you believe this message to be in error." msgstr "" -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" msgstr "" @@ -14406,8 +14207,7 @@ msgstr "" msgid "Contact {platform_name} Support" msgstr "" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html +#: cms/templates/asset_index.html cms/templates/widgets/header.html msgid "Files & Uploads" msgstr " 檔案上傳 " @@ -14427,8 +14227,7 @@ msgstr "內容" msgid "Page Actions" msgstr "頁面功能" -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/videos_index.html +#: cms/templates/asset_index.html cms/templates/videos_index.html msgid "Upload New File" msgstr "上傳新檔案" @@ -14498,7 +14297,7 @@ msgstr "您的檔案已經被刪除。" msgid "close alert" msgstr "關閉警告" -#: cms/templates/checklists.html cms/templates/checklists.html +#: cms/templates/checklists.html msgid "Course Checklists" msgstr "課程檢查表" @@ -14533,7 +14332,6 @@ msgid "{studio_name} checklists" msgstr "" #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "重複" @@ -14546,7 +14344,7 @@ msgid "Delete this component" msgstr "" #: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Drag to reorder" msgstr "" @@ -14669,7 +14467,7 @@ msgid "" msgstr "" #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html +#: cms/templates/settings.html msgid "Organization" msgstr "組織名稱" @@ -14679,7 +14477,6 @@ msgstr "組織名稱" #. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed #. when user put no data into this field. #: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html msgid "e.g. UniversityX or OrganizationX" msgstr "例如:UniversityX 或 OrganizationX" @@ -14689,8 +14486,6 @@ msgid "" "the same as the original organization name.)" msgstr "" -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html #: cms/templates/course-create-rerun.html msgid "Note: No spaces or special characters are allowed." msgstr "" @@ -14765,7 +14560,7 @@ msgstr "" msgid "Learn more about Course Re-runs" msgstr "" -#: cms/templates/course_info.html cms/templates/course_info.html +#: cms/templates/course_info.html msgid "Course Updates" msgstr "公佈欄" @@ -14780,7 +14575,6 @@ msgid "" "respond to student questions. You add or edit updates in HTML." msgstr "使用公佈欄以提醒學生重要日期或考試、強調論壇中特定的討論內容、公告時間表的改變和回答學生問題。以HTML新增或編輯公告。" -#: cms/templates/course_outline.html cms/templates/course_outline.html #: cms/templates/course_outline.html cms/templates/settings.html msgid "Course Outline" msgstr "課程內容" @@ -14835,7 +14629,7 @@ msgstr "線上檢視" msgid "Course Start Date:" msgstr "" -#: cms/templates/course_outline.html cms/templates/course_outline.html +#: cms/templates/course_outline.html msgid "Edit Start Date" msgstr "" @@ -14894,8 +14688,8 @@ msgstr "" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html msgid "Pages" msgstr "自訂頁面" @@ -14914,11 +14708,11 @@ msgstr "注意:自訂頁面是公開可見的,如果使用者知道自訂頁 msgid "Show this page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "Show/hide page" msgstr "" -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/edit-tabs.html msgid "This page cannot be reordered" msgstr "無法復原此頁面" @@ -14982,7 +14776,6 @@ msgid "" msgstr "靜態頁面會出現在在課程上方的導覽列。預設頁面(課程、課程訊息、討論區、Wiki和進度)會接在教材和自訂的靜態頁面之前。" #: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html msgid "close modal" msgstr "" @@ -15024,7 +14817,7 @@ msgstr "" msgid "Back to dashboard" msgstr "回到儀表板" -#: cms/templates/export.html cms/templates/export.html +#: cms/templates/export.html msgid "Course Export" msgstr "匯出課程" @@ -15154,8 +14947,7 @@ msgstr "" msgid "Export Course to Git" msgstr "" -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html +#: cms/templates/export_git.html cms/templates/widgets/header.html msgid "Export to Git" msgstr "" @@ -15199,13 +14991,11 @@ msgstr "" msgid "Course git url:" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html #: cms/templates/visibility_editor.html msgid "Content Groups" msgstr "" -#: cms/templates/group_configurations.html #: cms/templates/group_configurations.html msgid "Experiment Group Configurations" msgstr "" @@ -15228,10 +15018,15 @@ msgstr "" msgid "" "Click {em_start}New content group{em_end} to add a new content group. To " "edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. Content groups cannot be deleted." +"{em_start}Edit{em_end}." msgstr "" #: cms/templates/group_configurations.html +msgid "" +"You can delete a content group only if it is not in use by a unit. To delete" +" a content group, hover over its box and click the delete icon." +msgstr "" + #: cms/templates/group_configurations.html msgid "Learn More" msgstr "" @@ -15280,8 +15075,8 @@ msgid "Course Team" msgstr "課程團隊" #: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html msgid "Advanced Settings" msgstr "進階設置" @@ -15303,7 +15098,7 @@ msgstr "" msgid "{studio_name}'s Many Features" msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "{studio_name} Helps You Keep Your Courses Organized" msgstr "" @@ -15348,7 +15143,6 @@ msgid "" "You don't have to have it all done at once." msgstr "定期設置和釋出章節給您的學生。您不需要一次發佈所有的章節內容。" -#: cms/templates/howitworks.html cms/templates/howitworks.html #: cms/templates/howitworks.html msgid "Learning is More than Just Lectures" msgstr "學習不僅僅是聽課" @@ -15390,7 +15184,7 @@ msgid "" " of problems to challenge your learners." msgstr "" -#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html msgid "" "{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " "Friends." @@ -15491,7 +15285,7 @@ msgid "" "to fix the error." msgstr "" -#: cms/templates/import.html cms/templates/import.html +#: cms/templates/import.html msgid "Course Import" msgstr "匯入課程" @@ -15630,8 +15424,7 @@ msgstr "" "如果您在課程進行中時執行匯入,並更改任何問題組件的網址名稱(或 url_name " "節點),和此問題組件相關的學生資料可能會遺失,這些資料包含學生於問題中獲得的分數。" -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/header.html +#: cms/templates/index.html cms/templates/widgets/header.html msgid "{studio_name} Home" msgstr "" @@ -15647,7 +15440,7 @@ msgstr "" msgid "Email staff to create course" msgstr "請寄信給工作人員以取得開課權限" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Please correct the highlighted fields below." msgstr "請更正下面高亮顯示的欄位。" @@ -15686,7 +15479,7 @@ msgid "" "The unique number that identifies your course within your organization." msgstr "用來於您的組織中識別課程的唯一值。" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "" "Note: This is part of your course URL, so no spaces or special characters " "are allowed and it cannot be changed." @@ -15696,7 +15489,7 @@ msgstr "注意:這會您課程網址的一部分,所以請勿使用空格或 msgid "The term in which your course will run." msgstr "您的課程開始的學期。" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create" msgstr "創建" @@ -15727,7 +15520,7 @@ msgstr "" msgid "The public organization name for your library." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "This cannot be changed." msgstr "" @@ -15757,7 +15550,7 @@ msgstr "" msgid "Courses Being Processed" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Course Run:" msgstr "開課時程:" @@ -15802,7 +15595,7 @@ msgid "" "the specific course you are helping to author." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Create Your First Course" msgstr "創建您的第一個課程" @@ -15823,7 +15616,7 @@ msgid "" "during the work week." msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status:" msgstr "您的課程創建者請求狀態:" @@ -15831,7 +15624,7 @@ msgstr "您的課程創建者請求狀態:" msgid "Request the Ability to Create Courses" msgstr "請求創建課程所需要的權限" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator Request Status" msgstr "您的課程創建者請求狀態" @@ -15843,7 +15636,7 @@ msgid "" "team is has completed evaluating your request." msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Your Course Creator request is:" msgstr "您的課程創建者請求:" @@ -15895,7 +15688,7 @@ msgstr "" msgid "Getting Started with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Use our feedback tool, Tender, to request help" msgstr "" @@ -15903,7 +15696,7 @@ msgstr "" msgid "Request help with {studio_name}" msgstr "" -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +#: cms/templates/index.html msgid "Can I create courses in {studio_name}?" msgstr "" @@ -15963,7 +15756,7 @@ msgstr "" msgid "Add Component" msgstr "" -#: cms/templates/library.html cms/templates/library.html +#: cms/templates/library.html msgid "Library ID" msgstr "" @@ -16017,7 +15810,7 @@ msgstr "" msgid "Sign In" msgstr "登入" -#: cms/templates/login.html cms/templates/login.html +#: cms/templates/login.html msgid "Sign In to {studio_name}" msgstr "" @@ -16070,13 +15863,11 @@ msgstr "請提供您想要新增的課程成員的電子郵件地址" msgid "Add User" msgstr "新增用戶" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "Current Role:" msgstr "當前角色:" -#: cms/templates/manage_users.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html msgid "You!" msgstr "您!" @@ -16315,7 +16106,6 @@ msgstr "基本資訊" msgid "The nuts and bolts of your course" msgstr "您的課程的具體細節" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "This field is disabled: this information cannot be changed." msgstr "該欄位為關閉,資訊不可修改。" @@ -16374,8 +16164,7 @@ msgstr "課程開始的第一天" msgid "Course Start Time" msgstr "開課時間" -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html msgid "(UTC)" msgstr "" @@ -16458,7 +16247,6 @@ msgid "" "Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" msgstr "介紹說明、先修條件、常見問題解答被列在%s (HTML格式)" -#: cms/templates/settings.html cms/templates/settings.html #: cms/templates/settings.html msgid "Course Image" msgstr "課程圖片" @@ -16686,7 +16474,6 @@ msgid "" "worth." msgstr "" -#: cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Expand or Collapse" msgstr "" @@ -16738,8 +16525,7 @@ msgstr "如果您的教材沒有獨立的章節,您可以上傳整個文件作 msgid "Learn more about textbooks" msgstr "" -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html +#: cms/templates/videos_index.html cms/templates/widgets/header.html msgid "Video Uploads" msgstr "" @@ -16919,7 +16705,7 @@ msgstr "" msgid "Current Course:" msgstr "" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Navigation for {course_name}" msgstr "" @@ -16959,7 +16745,7 @@ msgstr "" msgid "Help & Account Navigation" msgstr "幫助 & 帳戶導航" -#: cms/templates/widgets/header.html cms/templates/widgets/header.html +#: cms/templates/widgets/header.html msgid "Contextual Online Help" msgstr "" @@ -16979,12 +16765,10 @@ msgstr "" msgid "Launch Latex Source Compiler" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Heading 1" msgstr "" -#: cms/templates/widgets/problem-edit.html #: cms/templates/widgets/problem-edit.html msgid "Explanation" msgstr "" @@ -17009,7 +16793,7 @@ msgstr "" msgid "Hide {studio_name} Help" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Documentation" msgstr "" @@ -17025,7 +16809,7 @@ msgstr "" msgid "Building and Running an {platform_name} Course PDF" msgstr "" -#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html msgid "{studio_name} Author Support" msgstr "" @@ -17072,11 +16856,11 @@ msgid "" "articles etc..." msgstr "" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Contents" msgstr "內容" -#: wiki/forms.py wiki/forms.py +#: wiki/forms.py msgid "Summary" msgstr "總結" @@ -17431,11 +17215,11 @@ msgstr "附件修訂版本" msgid "%s was successfully added." msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "Your file could not be saved: %s" msgstr "" -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +#: wiki/plugins/attachments/views.py msgid "" "Your file could not be saved, probably because of a permission error on the " "web server." diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo index 1738536c7e..deb537c598 100644 Binary files a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po index c28287dd13..73385d5b1b 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po @@ -72,8 +72,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2015-02-17 16:01+0000\n" -"PO-Revision-Date: 2015-02-02 13:52+0000\n" +"POT-Creation-Date: 2015-02-23 18:30+0000\n" +"PO-Revision-Date: 2015-02-20 21:40+0000\n" "Last-Translator: Sarina Canelake \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,6 @@ msgstr "" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: cms/static/coffee/src/views/tabs.js cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: cms/static/js/views/course_info_update.js #: common/lib/xmodule/xmodule/js/src/html/edit.js @@ -115,8 +114,6 @@ msgstr "該連結將在新的瀏覽器視窗或標籤中打開" #: cms/static/js/factories/manage_users.js #: cms/static/js/factories/manage_users_lib.js #: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js -#: lms/static/coffee/src/instructor_dashboard/util.js msgid "Unknown" msgstr "" @@ -124,7 +121,6 @@ msgstr "" #: cms/static/js/factories/manage_users_lib.js cms/static/js/views/asset.js #: cms/static/js/views/list_item.js cms/static/js/views/show_textbook.js #: common/static/js/vendor/ova/catch/js/catch.js -#: common/static/js/vendor/ova/catch/js/catch.js msgid "Delete" msgstr "刪除" @@ -207,7 +203,6 @@ msgid "(%(num_points)s point possible)" msgid_plural "(%(num_points)s points possible)" msgstr[0] "" -#: common/lib/xmodule/xmodule/js/src/capa/display.js #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Answer:" msgstr "答案:" @@ -215,7 +210,6 @@ msgstr "答案:" #. Translators: the word Answer here refers to the answer to a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "Hide Answer" msgstr "隱藏答案" @@ -236,7 +230,6 @@ msgstr "隱藏答案" #. Translators: the word unanswered here is about answering a problem the #. student must solve.; #: common/lib/xmodule/xmodule/js/src/capa/display.js -#: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "unanswered" msgstr "未答覆" @@ -255,7 +248,6 @@ msgstr "您需要選擇一個等級,然後才能提交。" #. types (i.e. self assesment to peer assessment). Sometimes, if a student #. did not perform well at one step, they cannot move on to the next one. #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Your score did not meet the criteria to move to the next step." msgstr "您的分數沒有達到晉級下一步的標準。" @@ -321,11 +313,9 @@ msgstr "" #. question's #. content that had been hidden #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Show Question" msgstr "顯示問題" -#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js #: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js msgid "Hide Question" msgstr "隱藏問題" @@ -333,7 +323,6 @@ msgstr "隱藏問題" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Paragraph" msgstr "段落" @@ -344,21 +333,18 @@ msgstr "預設格是" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 1" msgstr "標題 1" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 2" msgstr "標題 2" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Heading 3" msgstr "標頭 3" @@ -1217,7 +1203,6 @@ msgstr "移除連結" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace all" msgstr "全部取代" @@ -1230,7 +1215,6 @@ msgstr "取代為" #. Translators: this is a message from the raw HTML editor displayed in the #. browser when a user needs to edit HTML #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js msgid "Replace" msgstr "取代" @@ -1563,18 +1547,14 @@ msgid "" "Click Cancel to return to this page without sending your information." msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "incorrect" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "correct" msgstr "" -#: common/lib/xmodule/xmodule/js/src/problem/edit.js #: common/lib/xmodule/xmodule/js/src/problem/edit.js msgid "answer" msgstr "" @@ -1692,7 +1672,6 @@ msgstr "開啟高清" msgid "HD off" msgstr "關閉高清" -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js #: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js msgid "Video position" msgstr "影片位置" @@ -1736,7 +1715,6 @@ msgstr "" msgid "Creating missing groups" msgstr "" -#: common/static/coffee/src/discussion/discussion_module_view.js #: common/static/coffee/src/discussion/discussion_module_view.js msgid "Hide Discussion" msgstr "隱藏討論" @@ -1746,13 +1724,9 @@ msgid "Show Discussion" msgstr "顯示討論" #: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/discussion_module_view.js -#: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/utils.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js -#: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" @@ -1782,8 +1756,6 @@ msgid "We had some trouble processing your request. Please try again." msgstr "我們處理您的請求時遇到了一些麻煩,請再試一次。" #: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/utils.js -#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_topic_menu_view.js msgid "…" @@ -2069,12 +2041,10 @@ msgstr[0] "" msgid "All flags have been removed. To undo, uncheck the box." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "You have already reported this annotation." msgstr "" -#: common/static/js/vendor/ova/flagging-annotator.js #: common/static/js/vendor/ova/flagging-annotator.js msgid "Report annotation as inappropriate or offensive." msgstr "" @@ -2113,7 +2083,6 @@ msgstr "發表日期" msgid "More" msgstr "更多" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "My Notes" msgstr "我的筆記" @@ -2122,32 +2091,26 @@ msgstr "我的筆記" msgid "Instructor" msgstr "教師功能面板" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Public" msgstr "公開" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Search" msgstr "搜尋" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Users" msgstr "使用者" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Tags" msgstr "標籤" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Annotation Text" msgstr "註解文本" -#: common/static/js/vendor/ova/catch/js/catch.js #: common/static/js/vendor/ova/catch/js/catch.js msgid "Clear" msgstr "清除" @@ -2239,7 +2202,6 @@ msgstr "用戶名" msgid "Email" msgstr "電子郵件" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Revoke access" msgstr "取消訪問權" @@ -2252,7 +2214,6 @@ msgstr "請輸入使用者名稱或是電子郵件信箱" msgid "Please enter a username or email." msgstr "請輸入使用者名稱或是電子郵件信箱" -#: lms/static/coffee/src/instructor_dashboard/membership.js #: lms/static/coffee/src/instructor_dashboard/membership.js msgid "Error changing user's permissions." msgstr "變更使用者權限時發生錯誤" @@ -2440,7 +2401,6 @@ msgstr "您的郵件已成功地佇列中等待發送。請注意,大班級, msgid "Error sending email." msgstr "寄送電子郵件時發生錯誤。" -#: lms/static/coffee/src/instructor_dashboard/send_email.js #: lms/static/coffee/src/instructor_dashboard/send_email.js msgid "There is no email history for this course." msgstr "這門課程沒有電子郵件歷史記錄。" @@ -2453,10 +2413,6 @@ msgstr "獲取這門課程的電子郵件任務歷史記錄錯誤。" msgid "There was an error obtaining email content history for this course." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a student email address or username." msgstr "請輸入學生的電子郵件信箱或使用者名稱:" @@ -2467,12 +2423,6 @@ msgid "" "the student identifier is spelled correctly." msgstr "" -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js -#: lms/static/coffee/src/instructor_dashboard/student_admin.js #: lms/static/coffee/src/instructor_dashboard/student_admin.js msgid "Please enter a problem location." msgstr "請輸入一個問題的位置。" @@ -2728,7 +2678,6 @@ msgstr "系統陷入無效狀態:<%= state %>" msgid "System got into invalid state for submission: " msgstr "系統陷入無效狀態提交:" -#: lms/static/coffee/src/staff_grading/staff_grading.js #: lms/static/coffee/src/staff_grading/staff_grading.js msgid "(Hide)" msgstr "(隱藏)" @@ -2822,7 +2771,7 @@ msgstr "在這裡輸入的圖像描述" msgid "enter link description here" msgstr "請在此輸入鏈接的描述" -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +#: lms/static/js/Markdown.Editor.js msgid "enter code here" msgstr "請在此輸入代碼" @@ -2892,6 +2841,10 @@ msgid "" "email to confirm your email address change." msgstr "" +#: lms/static/js/edxnotes/plugins/accessibility.js +msgid "Focus grabber" +msgstr "" + #: lms/static/js/edxnotes/views/search_box.js #: lms/static/js/edxnotes/views/toggle_notes_factory.js msgid "" @@ -2913,7 +2866,7 @@ msgid "Hide notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Showing notes" +msgid "Notes visible" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -2921,7 +2874,7 @@ msgid "Show notes" msgstr "" #: lms/static/js/edxnotes/views/toggle_notes_factory.js -msgid "Hiding notes" +msgid "Notes hidden" msgstr "" #: lms/static/js/edxnotes/views/tabs/course_structure.js @@ -3089,6 +3042,14 @@ msgstr "" msgid "Saved" msgstr "" +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Image Upload Error" +msgstr "" + +#: lms/static/js/verify_student/views/image_input_view.js +msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." +msgstr "" + #: lms/static/js/verify_student/views/make_payment_step_view.js msgid "An error has occurred. Please try again." msgstr "" @@ -3135,18 +3096,6 @@ msgstr "" msgid "Double-check that your webcam is connected and working to continue." msgstr "" -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Flash Not Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have Flash installed." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "%(a_start)s Get Flash %(a_end)s to continue your enrollment." -msgstr "" - #: lms/static/js/views/file_uploader.js msgid "Your upload of '{file}' succeeded." msgstr "" @@ -3155,7 +3104,6 @@ msgstr "" msgid "Your upload of '{file}' failed." msgstr "" -#: lms/templates/class_dashboard/all_section_metrics.js #: lms/templates/class_dashboard/all_section_metrics.js msgid "Unable to retrieve data, please try again later." msgstr "無法檢索資料,請稍後再試" @@ -3189,7 +3137,7 @@ msgstr "發生的原因可能歸咎於我們的伺服器或是您的網路連線 msgid "Studio's having trouble saving your work" msgstr "Studio在儲存您的工作時遇到了問題。" -#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js #: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js #: cms/static/js/views/asset.js cms/static/js/views/container.js @@ -3200,7 +3148,6 @@ msgstr "Studio在儲存您的工作時遇到了問題。" #: cms/static/js/views/overview_assignment_grader.js #: cms/static/js/views/modals/edit_xblock.js #: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js msgid "Saving" msgstr "儲存中" @@ -3299,8 +3246,8 @@ msgstr "" msgid "Your import has failed." msgstr "" -#: cms/static/js/factories/import.js cms/static/js/factories/import.js -#: cms/static/js/views/import.js cms/static/js/views/import.js.c +#: cms/static/js/factories/import.js cms/static/js/views/import.js +#: cms/static/js/views/import.js.c msgid "Choose new file" msgstr "" @@ -3509,7 +3456,6 @@ msgid "Grace period must be specified in HH:MM format." msgstr "寬限時間必須以 HH:MM 格式指定。" #: cms/static/js/spec/views/assets_spec.js -#: cms/static/js/spec/views/paging_spec.js #: cms/static/js/spec/views/paging_spec.js cms/static/js/views/assets.js #: cms/templates/js/asset-library.underscore msgid "Type" @@ -3569,8 +3515,36 @@ msgstr "" msgid "Load Another File" msgstr "" +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Not in Use" +msgstr "" + +#. Translators: 'count' is number of units that the group +#. configuration is used in. +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +msgid "Used in %(count)s unit" +msgid_plural "Used in %(count)s units" +msgstr[0] "" + +#. Translators: 'outlineAnchor' is an anchor pointing to +#. the course outline page. +#: cms/static/js/views/content_group_details.js +msgid "" +"This content group is not in use. Add a content group to any unit from the " +"%(outlineAnchor)s." +msgstr "" + +#: cms/static/js/views/content_group_details.js +#: cms/static/js/views/group_configuration_details.js +#: cms/templates/js/mock/mock-settings-page.underscore +msgid "Course Outline" +msgstr "" + #. Translators: This refers to a content group that can be linked to a student #. cohort. +#: cms/static/js/views/content_group_item.js #: cms/static/js/views/content_group_list.js msgid "content group" msgstr "" @@ -3610,17 +3584,6 @@ msgid "Contains %(count)s group" msgid_plural "Contains %(count)s groups" msgstr[0] "" -#: cms/static/js/views/group_configuration_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -msgid "Used in %(count)s unit" -msgid_plural "Used in %(count)s units" -msgstr[0] "" - #. Translators: 'outlineAnchor' is an anchor pointing to #. the course outline page. #: cms/static/js/views/group_configuration_details.js @@ -3629,11 +3592,6 @@ msgid "" " to any Unit via the %(outlineAnchor)s." msgstr "" -#: cms/static/js/views/group_configuration_details.js -#: cms/templates/js/mock/mock-settings-page.underscore -msgid "Course Outline" -msgstr "" - #. Translators: this refers to a collection of groups. #: cms/static/js/views/group_configuration_item.js #: cms/static/js/views/group_configurations_list.js @@ -3706,8 +3664,7 @@ msgstr "" #. "Showing 0-9 out of 25 total, sorted by Date Added ascending" #. Translators: sample result: #. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js -#: cms/static/js/views/paging_header.js cms/static/js/views/paging_header.js +#: cms/static/js/views/paging_header.js msgid "Showing %(current_item_range)s out of %(total_items_count)s, " msgstr "" @@ -3811,7 +3768,6 @@ msgstr "" #: cms/static/js/views/modals/course_outline_modals.js #: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore msgid "Publish" msgstr "" @@ -3850,7 +3806,6 @@ msgstr "" msgid "Publishing" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js #: cms/templates/js/publish-xblock.underscore msgid "Discard Changes" @@ -3878,7 +3833,6 @@ msgstr "" msgid "Inheriting Student Visibility" msgstr "" -#: cms/static/js/views/pages/container_subviews.js #: cms/static/js/views/pages/container_subviews.js msgid "Make Visible to Students" msgstr "" @@ -3993,14 +3947,9 @@ msgstr "很抱歉,在分析您上傳的字幕時發生錯誤,請檢查您的 msgid "Upload translation" msgstr "" -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore cms/templates/js/list.underscore -#: cms/templates/js/list.underscore cms/templates/js/publish-xblock.underscore #: cms/templates/js/publish-xblock.underscore #: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore #: lms/templates/courseware_search/search_list.underscore msgid "gettext(" msgstr "" @@ -4109,7 +4058,6 @@ msgid "" "addresses or usernames on this page." msgstr "" -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore #: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore msgid "What does this mean?" msgstr "" @@ -4277,7 +4225,6 @@ msgstr "" msgid "We couldn't sign you in." msgstr "" -#: lms/templates/student_account/login.underscore #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore msgid "Sign in" @@ -4335,6 +4282,10 @@ msgstr "" msgid "or create a new one here" msgstr "" +#: lms/templates/student_account/register.underscore +msgid "Create a new account" +msgstr "" + #: lms/templates/student_account/register.underscore msgid "Create your account" msgstr "" @@ -4506,6 +4457,14 @@ msgstr "" msgid "Once in position, use the camera button %(icon)s to capture your ID" msgstr "" +#: lms/templates/verify_student/image_input.underscore +msgid "Preview of uploaded image" +msgstr "" + +#: lms/templates/verify_student/image_input.underscore +msgid "Upload an image or capture one with your web or phone camera." +msgstr "" + #: lms/templates/verify_student/intro_step.underscore msgid "Thanks for returning to verify your ID in: %(courseName)s" msgstr "" @@ -4784,7 +4743,6 @@ msgstr "" msgid "List of uploaded files and assets in this course" msgstr "" -#: cms/templates/js/asset-library.underscore #: cms/templates/js/asset-library.underscore msgid "- Sortable" msgstr "" @@ -4852,6 +4810,20 @@ msgid "" "changes you will change the student experience." msgstr "" +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/group-configuration-details.underscore +msgid "ID" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +#: cms/templates/js/content-group-editor.underscore +msgid "Cannot delete when in use by a unit" +msgstr "" + +#: cms/templates/js/content-group-details.underscore +msgid "This content group is used in:" +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/edit-textbook.underscore #: cms/templates/js/group-configuration-editor.underscore @@ -4862,10 +4834,18 @@ msgstr "" msgid "Content Group Name" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "Content Group ID" +msgstr "" + #: cms/templates/js/content-group-editor.underscore msgid "This is the name of the group" msgstr "" +#: cms/templates/js/content-group-editor.underscore +msgid "This content group is used in one or more units." +msgstr "" + #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Create" @@ -4891,12 +4871,10 @@ msgstr "" msgid "Display Name" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "" -#: cms/templates/js/course-outline.underscore #: cms/templates/js/course-outline.underscore msgid "Drag to reorder" msgstr "" @@ -4996,7 +4974,6 @@ msgstr "" msgid "Due Time in UTC:" msgstr "" -#: cms/templates/js/due-date-editor.underscore #: cms/templates/js/due-date-editor.underscore msgid "Clear Grading Due Date" msgstr "" @@ -5067,10 +5044,6 @@ msgstr "" msgid "Grade as:" msgstr "" -#: cms/templates/js/group-configuration-details.underscore -msgid "ID" -msgstr "" - #: cms/templates/js/group-configuration-details.underscore #: cms/templates/js/group-configuration-editor.underscore msgid "Cannot delete when in use by an experiment" @@ -5203,7 +5176,6 @@ msgstr "" #: cms/templates/js/publish-history.underscore #: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/publish-xblock.underscore #: cms/templates/js/staff-lock-editor.underscore msgid "message" msgstr "" @@ -5282,7 +5254,6 @@ msgstr "" msgid "Release Time in UTC:" msgstr "" -#: cms/templates/js/release-date-editor.underscore #: cms/templates/js/release-date-editor.underscore msgid "Clear Release Date/Time" msgstr "" @@ -5336,7 +5307,6 @@ msgid "" "course settings:" msgstr "" -#: cms/templates/js/xblock-string-field-editor.underscore #: cms/templates/js/xblock-string-field-editor.underscore msgid "Edit the name" msgstr "" @@ -5456,15 +5426,9 @@ msgid "" msgstr "" #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Upload New Transcript" msgstr "" @@ -5474,11 +5438,8 @@ msgstr "" msgid "Upload New .srt Transcript" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-found.underscore #: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore #: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore msgid "Download Transcript for Editing" msgstr "" @@ -5494,7 +5455,6 @@ msgid "" "your own .srt transcript file." msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore #: cms/templates/js/video/transcripts/messages/transcripts-import.underscore msgid "Import YouTube Transcript" msgstr "" @@ -5519,8 +5479,6 @@ msgstr "" msgid "Do you want to replace the edX transcript with the YouTube transcript?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore #: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore msgid "Yes, replace the edX transcript with the YouTube transcript" msgstr "" @@ -5547,8 +5505,6 @@ msgid "" " file?" msgstr "" -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore #: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore msgid "Use Current Transcript" msgstr "" diff --git a/lms/djangoapps/bulk_email/forms.py b/lms/djangoapps/bulk_email/forms.py index 49fb840560..cacd689d87 100644 --- a/lms/djangoapps/bulk_email/forms.py +++ b/lms/djangoapps/bulk_email/forms.py @@ -17,7 +17,7 @@ from opaque_keys.edx.locations import SlashSeparatedCourseKey log = logging.getLogger(__name__) -class CourseEmailTemplateForm(forms.ModelForm): # pylint: disable=incomplete-protocol +class CourseEmailTemplateForm(forms.ModelForm): """Form providing validation of CourseEmail templates.""" name = forms.CharField(required=False) @@ -73,7 +73,7 @@ class CourseEmailTemplateForm(forms.ModelForm): # pylint: disable=incomplete-pr return name -class CourseAuthorizationAdminForm(forms.ModelForm): # pylint: disable=incomplete-protocol +class CourseAuthorizationAdminForm(forms.ModelForm): """Input form for email enabling, allowing us to verify data.""" class Meta: # pylint: disable=missing-docstring diff --git a/lms/djangoapps/certificates/admin.py b/lms/djangoapps/certificates/admin.py new file mode 100644 index 0000000000..715c339d1e --- /dev/null +++ b/lms/djangoapps/certificates/admin.py @@ -0,0 +1,8 @@ +""" +django admin pages for certificates models +""" +from django.contrib import admin +from certificates.models import CertificateGenerationConfiguration + + +admin.site.register(CertificateGenerationConfiguration) diff --git a/lms/djangoapps/certificates/api.py b/lms/djangoapps/certificates/api.py new file mode 100644 index 0000000000..c2c2191b3b --- /dev/null +++ b/lms/djangoapps/certificates/api.py @@ -0,0 +1,65 @@ +""" +Certificates API +""" + +import logging +from certificates.models import CertificateStatuses as cert_status, certificate_status_for_student +from certificates.queue import XQueueCertInterface + +log = logging.getLogger("edx.certificate") + + +def generate_user_certificates(student, course): + """ + It will add the add-cert request into the xqueue. + + Args: + student (object): user + course (object): course + + Returns: + returns status of generated certificate + """ + xqueue = XQueueCertInterface() + ret = xqueue.add_cert(student, course.id, course=course) + log.info( + ( + u"Added a certificate generation task to the XQueue " + u"for student %s in course '%s'. " + u"The new certificate status is '%s'." + ), + student.id, + unicode(course.id), + ret + ) + return ret + + +def certificate_downloadable_status(student, course_key): + """ + Check the student existing certificates against a given course. + if status is not generating and not downloadable or error then user can view the generate button. + + Args: + student (user object): logged-in user + course_key (CourseKey): ID associated with the course + + Returns: + Dict containing student passed status also download url for cert if available + """ + current_status = certificate_status_for_student(student, course_key) + + # If the certificate status is an error user should view that status is "generating". + # On the back-end, need to monitor those errors and re-submit the task. + + response_data = { + 'is_downloadable': False, + 'is_generating': True if current_status['status'] in [cert_status.generating, cert_status.error] else False, + 'download_url': None + } + + if current_status['status'] == cert_status.downloadable: + response_data['is_downloadable'] = True + response_data['download_url'] = current_status['download_url'] + + return response_data diff --git a/lms/djangoapps/certificates/management/commands/create_fake_cert.py b/lms/djangoapps/certificates/management/commands/create_fake_cert.py new file mode 100644 index 0000000000..7c063ed1b3 --- /dev/null +++ b/lms/djangoapps/certificates/management/commands/create_fake_cert.py @@ -0,0 +1,110 @@ +"""Utility for testing certificate display. + +This command will create a fake certificate for a user +in a course. The certificate will display on the student's +dashboard, but no PDF will be generated. + +Example usage: + + $ ./manage.py lms create_fake_cert test_user edX/DemoX/Demo_Course --mode honor --grade 0.89 + +""" +import logging +from django.core.management.base import BaseCommand, CommandError +from django.contrib.auth.models import User +from optparse import make_option +from opaque_keys.edx.keys import CourseKey +from certificates.models import GeneratedCertificate, CertificateStatuses + + +LOGGER = logging.getLogger(__name__) + + +class Command(BaseCommand): + """Create a fake certificate for a user in a course. """ + + USAGE = u'Usage: create_fake_cert --mode --status --grade ' + + option_list = BaseCommand.option_list + ( + make_option( + '-m', '--mode', + metavar='CERT_MODE', + dest='cert_mode', + default='honor', + help='The course mode of the certificate (e.g. "honor", "verified", or "professional")' + ), + + make_option( + '-s', '--status', + metavar='CERT_STATUS', + dest='status', + default=CertificateStatuses.downloadable, + help='The status of the certificate' + ), + + make_option( + '-g', '--grade', + metavar='CERT_GRADE', + dest='grade', + default='', + help='The grade for the course, as a decimal (e.g. "0.89" for 89%)' + ), + ) + + def handle(self, *args, **options): + """Create a fake certificate for a user. + + Arguments: + username (unicode): Identifier for the certificate's user. + course_key (unicode): Identifier for the certificate's course. + + Keyword Arguments: + cert_mode (str): The mode of the certificate (e.g "honor") + status (str): The status of the certificate (e.g. "downloadable") + grade (str): The grade of the certificate (e.g "0.89" for 89%) + + Raises: + CommandError + + """ + if len(args) < 2: + raise CommandError(self.USAGE) + + user = User.objects.get(username=args[0]) + course_key = CourseKey.from_string(args[1]) + cert_mode = options.get('cert_mode', 'honor') + status = options.get('status', CertificateStatuses.downloadable) + grade = options.get('grade', '') + + cert, created = GeneratedCertificate.objects.get_or_create( + user=user, + course_id=course_key + ) + cert.mode = cert_mode + cert.status = status + cert.grade = grade + + if status == CertificateStatuses.downloadable: + cert.download_uuid = 'test' + cert.verify_uuid = 'test' + cert.download_url = 'http://www.example.com' + + cert.save() + + if created: + LOGGER.info( + u"Created certificate for user %s in course %s " + u"with mode %s, status %s, " + u"and grade %s", + user.id, unicode(course_key), + cert_mode, status, grade + ) + + else: + LOGGER.info( + u"Updated certificate for user %s in course %s " + u"with mode %s, status %s, " + u"and grade %s", + user.id, unicode(course_key), + cert_mode, status, grade + ) diff --git a/lms/djangoapps/certificates/migrations/0016_change_course_key_fields.py b/lms/djangoapps/certificates/migrations/0016_change_course_key_fields.py new file mode 100644 index 0000000000..6893750903 --- /dev/null +++ b/lms/djangoapps/certificates/migrations/0016_change_course_key_fields.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + + # Changing field 'GeneratedCertificate.course_id' + db.alter_column('certificates_generatedcertificate', 'course_id', self.gf('xmodule_django.models.CourseKeyField')(max_length=255)) + + # Changing field 'CertificateWhitelist.course_id' + db.alter_column('certificates_certificatewhitelist', 'course_id', self.gf('xmodule_django.models.CourseKeyField')(max_length=255)) + + def backwards(self, orm): + + # Changing field 'GeneratedCertificate.course_id' + db.alter_column('certificates_generatedcertificate', 'course_id', self.gf('django.db.models.fields.CharField')(max_length=255)) + + # Changing field 'CertificateWhitelist.course_id' + db.alter_column('certificates_certificatewhitelist', 'course_id', self.gf('django.db.models.fields.CharField')(max_length=255)) + + models = { + 'auth.group': { + 'Meta': {'object_name': 'Group'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), + 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) + }, + 'auth.permission': { + 'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'}, + 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) + }, + 'auth.user': { + 'Meta': {'object_name': 'User'}, + 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), + 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), + 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), + 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), + 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) + }, + 'certificates.certificatewhitelist': { + 'Meta': {'object_name': 'CertificateWhitelist'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'default': 'None', 'max_length': '255', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), + 'whitelist': ('django.db.models.fields.BooleanField', [], {'default': 'False'}) + }, + 'certificates.generatedcertificate': { + 'Meta': {'unique_together': "(('user', 'course_id'),)", 'object_name': 'GeneratedCertificate'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'default': 'None', 'max_length': '255', 'blank': 'True'}), + 'created_date': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now_add': 'True', 'blank': 'True'}), + 'distinction': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'download_url': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '128', 'blank': 'True'}), + 'download_uuid': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}), + 'error_reason': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '512', 'blank': 'True'}), + 'grade': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '5', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'key': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}), + 'mode': ('django.db.models.fields.CharField', [], {'default': "'honor'", 'max_length': '32'}), + 'modified_date': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now': 'True', 'blank': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), + 'status': ('django.db.models.fields.CharField', [], {'default': "'unavailable'", 'max_length': '32'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), + 'verify_uuid': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}) + }, + 'contenttypes.contenttype': { + 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, + 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) + } + } + + complete_apps = ['certificates'] diff --git a/lms/djangoapps/certificates/migrations/0017_auto__add_certificategenerationconfiguration.py b/lms/djangoapps/certificates/migrations/0017_auto__add_certificategenerationconfiguration.py new file mode 100644 index 0000000000..5bf618a49d --- /dev/null +++ b/lms/djangoapps/certificates/migrations/0017_auto__add_certificategenerationconfiguration.py @@ -0,0 +1,96 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + # Adding model 'CertificateGenerationConfiguration' + db.create_table('certificates_certificategenerationconfiguration', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('change_date', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, blank=True)), + ('changed_by', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'], null=True, on_delete=models.PROTECT)), + ('enabled', self.gf('django.db.models.fields.BooleanField')(default=False)), + )) + db.send_create_signal('certificates', ['CertificateGenerationConfiguration']) + + def backwards(self, orm): + # Deleting model 'CertificateGenerationConfiguration' + db.delete_table('certificates_certificategenerationconfiguration') + + + models = { + 'auth.group': { + 'Meta': {'object_name': 'Group'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), + 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) + }, + 'auth.permission': { + 'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'}, + 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) + }, + 'auth.user': { + 'Meta': {'object_name': 'User'}, + 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), + 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), + 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), + 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), + 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), + 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), + 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) + }, + 'certificates.certificategenerationconfiguration': { + 'Meta': {'object_name': 'CertificateGenerationConfiguration'}, + 'change_date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), + 'changed_by': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'on_delete': 'models.PROTECT'}), + 'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}) + }, + 'certificates.certificatewhitelist': { + 'Meta': {'object_name': 'CertificateWhitelist'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'default': 'None', 'max_length': '255', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), + 'whitelist': ('django.db.models.fields.BooleanField', [], {'default': 'False'}) + }, + 'certificates.generatedcertificate': { + 'Meta': {'unique_together': "(('user', 'course_id'),)", 'object_name': 'GeneratedCertificate'}, + 'course_id': ('xmodule_django.models.CourseKeyField', [], {'default': 'None', 'max_length': '255', 'blank': 'True'}), + 'created_date': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now_add': 'True', 'blank': 'True'}), + 'distinction': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'download_url': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '128', 'blank': 'True'}), + 'download_uuid': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}), + 'error_reason': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '512', 'blank': 'True'}), + 'grade': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '5', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'key': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}), + 'mode': ('django.db.models.fields.CharField', [], {'default': "'honor'", 'max_length': '32'}), + 'modified_date': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now': 'True', 'blank': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), + 'status': ('django.db.models.fields.CharField', [], {'default': "'unavailable'", 'max_length': '32'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}), + 'verify_uuid': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '32', 'blank': 'True'}) + }, + 'contenttypes.contenttype': { + 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, + 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) + } + } + + complete_apps = ['certificates'] diff --git a/lms/djangoapps/certificates/models.py b/lms/djangoapps/certificates/models.py index 0476579da5..0783bb3bb6 100644 --- a/lms/djangoapps/certificates/models.py +++ b/lms/djangoapps/certificates/models.py @@ -1,13 +1,3 @@ -from django.contrib.auth.models import User -from django.db import models -from django.db.models.signals import post_save -from django.dispatch import receiver -from django.conf import settings -from datetime import datetime -from model_utils import Choices -from xmodule_django.models import CourseKeyField, NoneToEmptyManager -from util.milestones_helpers import fulfill_course_milestone - """ Certificates are created for a student and an offering of a course. @@ -55,6 +45,17 @@ Eligibility: unless he has allow_certificate set to False. """ +from django.contrib.auth.models import User +from django.db import models +from django.db.models.signals import post_save +from django.dispatch import receiver +from django.conf import settings +from datetime import datetime +from model_utils import Choices +from config_models.models import ConfigurationModel +from xmodule_django.models import CourseKeyField, NoneToEmptyManager +from util.milestones_helpers import fulfill_course_milestone + class CertificateStatuses(object): deleted = 'deleted' @@ -176,3 +177,8 @@ def certificate_status_for_student(student, course_id): except GeneratedCertificate.DoesNotExist: pass return {'status': CertificateStatuses.unavailable, 'mode': GeneratedCertificate.MODES.honor} + + +class CertificateGenerationConfiguration(ConfigurationModel): + """Configure certificate generation.""" + pass diff --git a/lms/djangoapps/certificates/tests/test_create_fake_cert.py b/lms/djangoapps/certificates/tests/test_create_fake_cert.py new file mode 100644 index 0000000000..47d615a1c5 --- /dev/null +++ b/lms/djangoapps/certificates/tests/test_create_fake_cert.py @@ -0,0 +1,52 @@ +"""Tests for the create_fake_certs management command. """ +from django.test import TestCase +from django.core.management.base import CommandError + +from opaque_keys.edx.locator import CourseLocator +from student.tests.factories import UserFactory +from certificates.management.commands import create_fake_cert +from certificates.models import GeneratedCertificate + + +class CreateFakeCertTest(TestCase): + """Tests for the create_fake_certs management command. """ + + USERNAME = "test" + COURSE_KEY = CourseLocator(org='edX', course='DemoX', run='Demo_Course') + + def setUp(self): + super(CreateFakeCertTest, self).setUp() + self.user = UserFactory.create(username=self.USERNAME) + + def test_create_fake_cert(self): + # No existing cert, so create it + self._run_command( + self.USERNAME, + unicode(self.COURSE_KEY), + cert_mode='verified', + grade='0.89' + ) + cert = GeneratedCertificate.objects.get(user=self.user, course_id=self.COURSE_KEY) + self.assertEqual(cert.status, 'downloadable') + self.assertEqual(cert.mode, 'verified') + self.assertEqual(cert.grade, '0.89') + self.assertEqual(cert.download_uuid, 'test') + self.assertEqual(cert.download_url, 'http://www.example.com') + + # Cert already exists; modify it + self._run_command( + self.USERNAME, + unicode(self.COURSE_KEY), + cert_mode='honor' + ) + cert = GeneratedCertificate.objects.get(user=self.user, course_id=self.COURSE_KEY) + self.assertEqual(cert.mode, 'honor') + + def test_too_few_args(self): + with self.assertRaisesRegexp(CommandError, 'Usage'): + self._run_command(self.USERNAME) + + def _run_command(self, *args, **kwargs): + """Run the management command to generate a fake cert. """ + command = create_fake_cert.Command() + return command.handle(*args, **kwargs) diff --git a/lms/djangoapps/certificates/tests/tests_api.py b/lms/djangoapps/certificates/tests/tests_api.py new file mode 100644 index 0000000000..6a277dfda6 --- /dev/null +++ b/lms/djangoapps/certificates/tests/tests_api.py @@ -0,0 +1,141 @@ +""" +Tests for the certificates api and helper function. +""" +from django.test import RequestFactory +from django.test.utils import override_settings +from mock import patch, Mock +from xmodule.modulestore.tests.factories import CourseFactory +from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase +from certificates.api import certificate_downloadable_status, generate_user_certificates +from student.models import CourseEnrollment + +from student.tests.factories import UserFactory +from certificates.models import CertificateStatuses +from certificates.tests.factories import GeneratedCertificateFactory + + +class CertificateDownloadableStatusTests(ModuleStoreTestCase): + """ + Tests for the certificate_downloadable_status helper function + """ + + def setUp(self): + super(CertificateDownloadableStatusTests, self).setUp() + + self.student = UserFactory() + self.student_no_cert = UserFactory() + self.course = CourseFactory.create( + org='edx', + number='verified', + display_name='Verified Course' + ) + + self.request_factory = RequestFactory() + + def test_user_cert_status_with_generating(self): + """ + in case of certificate with error means means is_generating is True and is_downloadable is False + """ + GeneratedCertificateFactory.create( + user=self.student, + course_id=self.course.id, + status=CertificateStatuses.generating, + mode='verified' + ) + + self.assertEqual( + certificate_downloadable_status(self.student, self.course.id), + { + 'is_downloadable': False, + 'is_generating': True, + 'download_url': None + } + ) + + def test_user_cert_status_with_error(self): + """ + in case of certificate with error means means is_generating is True and is_downloadable is False + """ + + GeneratedCertificateFactory.create( + user=self.student, + course_id=self.course.id, + status=CertificateStatuses.error, + mode='verified' + ) + + self.assertEqual( + certificate_downloadable_status(self.student, self.course.id), + { + 'is_downloadable': False, + 'is_generating': True, + 'download_url': None + } + ) + + def test_user_with_out_cert(self): + """ + in case of no certificate means is_generating is False and is_downloadable is False + """ + self.assertEqual( + certificate_downloadable_status(self.student_no_cert, self.course.id), + { + 'is_downloadable': False, + 'is_generating': False, + 'download_url': None + } + ) + + def test_user_with_downloadable_cert(self): + """ + in case of downloadable certificate means is_generating is False and is_downloadable is True + download_url has cert link + """ + + GeneratedCertificateFactory.create( + user=self.student, + course_id=self.course.id, + status=CertificateStatuses.downloadable, + mode='verified', + download_url='www.google.com' + ) + + self.assertEqual( + certificate_downloadable_status(self.student, self.course.id), + { + 'is_downloadable': True, + 'is_generating': False, + 'download_url': 'www.google.com' + } + ) + + +class GenerateUserCertificatesTest(ModuleStoreTestCase): + """ + Tests for the generate_user_certificates helper function + """ + + def setUp(self): + super(GenerateUserCertificatesTest, self).setUp() + + self.student = UserFactory() + self.student_no_cert = UserFactory() + self.course = CourseFactory.create( + org='edx', + number='verified', + display_name='Verified Course', + grade_cutoffs={'cutoff': 0.75, 'Pass': 0.5} + ) + self.enrollment = CourseEnrollment.enroll(self.student, self.course.id, mode='honor') + self.request_factory = RequestFactory() + + @override_settings(CERT_QUEUE='certificates') + @patch('courseware.grades.grade', Mock(return_value={'grade': 'Pass', 'percent': 0.75})) + def test_new_cert_requests_into_xqueue_returns_generating(self): + """ + mocking grade.grade and returns a summary with passing score. + new requests saves into xqueue and returns the status + """ + with patch('capa.xqueue_interface.XQueueInterface.send_to_queue') as mock_send_to_queue: + mock_send_to_queue.return_value = (0, "Successfully queued") + self.assertEqual(generate_user_certificates(self.student, self.course), 'generating') diff --git a/lms/djangoapps/circuit/views.py b/lms/djangoapps/circuit/views.py index 5af9ce1b44..3e8a39cb43 100644 --- a/lms/djangoapps/circuit/views.py +++ b/lms/djangoapps/circuit/views.py @@ -31,7 +31,7 @@ def circuit_line(circuit): return xml.etree.ElementTree.tostring(circuit_line) -def edit_circuit(request, circuit): +def edit_circuit(_request, circuit): try: sc = ServerCircuit.objects.get(name=circuit) except: diff --git a/lms/djangoapps/course_structure_api/v0/tests.py b/lms/djangoapps/course_structure_api/v0/tests.py index 88f4e02ecd..663f2f4bf5 100644 --- a/lms/djangoapps/course_structure_api/v0/tests.py +++ b/lms/djangoapps/course_structure_api/v0/tests.py @@ -7,12 +7,17 @@ from datetime import datetime from django.core.urlresolvers import reverse from django.test.utils import override_settings +from mock import patch, Mock from oauth2_provider.tests.factories import AccessTokenFactory, ClientFactory -from openedx.core.djangoapps.content.course_structures.models import CourseStructure, update_course_structure +from opaque_keys.edx.locator import CourseLocator +from xmodule.error_module import ErrorDescriptor from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory +from xmodule.modulestore.xml import CourseLocationManager +from xmodule.tests import get_test_system from courseware.tests.factories import GlobalStaffFactory, StaffFactory +from openedx.core.djangoapps.content.course_structures.models import CourseStructure, update_course_structure TEST_SERVER_HOST = 'http://testserver' @@ -260,6 +265,24 @@ class CourseListTests(CourseViewTestsMixin, ModuleStoreTestCase): self.assertEqual(response.status_code, 200) self.assertDictContainsSubset({'count': 0, u'results': []}, response.data) + def test_course_error(self): + """ + Ensure the view still returns results even if get_courses() returns an ErrorDescriptor. The ErrorDescriptor + should be filtered out. + """ + + error_descriptor = ErrorDescriptor.from_xml( + '', + get_test_system(), + CourseLocationManager(CourseLocator(org='org', course='course', run='run')), + None + ) + + descriptors = [error_descriptor, self.empty_course, self.course] + + with patch('xmodule.modulestore.mixed.MixedModuleStore.get_courses', Mock(return_value=descriptors)): + self.test_get() + class CourseDetailTests(CourseDetailMixin, CourseViewTestsMixin, ModuleStoreTestCase): view = 'course_structure_api:v0:detail' diff --git a/lms/djangoapps/course_structure_api/v0/views.py b/lms/djangoapps/course_structure_api/v0/views.py index 73b7083d27..e7bc54537f 100644 --- a/lms/djangoapps/course_structure_api/v0/views.py +++ b/lms/djangoapps/course_structure_api/v0/views.py @@ -12,12 +12,12 @@ from rest_framework.response import Response from xmodule.modulestore.django import modulestore from opaque_keys.edx.keys import CourseKey +from course_structure_api.v0 import serializers +from courseware import courses from courseware.access import has_access from openedx.core.djangoapps.content.course_structures import models from openedx.core.lib.api.permissions import IsAuthenticatedOrDebug from openedx.core.lib.api.serializers import PaginationSerializer -from courseware import courses -from course_structure_api.v0 import serializers from student.roles import CourseInstructorRole, CourseStaffRole @@ -115,22 +115,24 @@ class CourseList(CourseViewMixin, ListAPIView): def get_queryset(self): course_ids = self.request.QUERY_PARAMS.get('course_id', None) - course_descriptors = [] + results = [] if course_ids: course_ids = course_ids.split(',') for course_id in course_ids: course_key = CourseKey.from_string(course_id) course_descriptor = courses.get_course(course_key) - course_descriptors.append(course_descriptor) + results.append(course_descriptor) else: - course_descriptors = modulestore().get_courses() + results = modulestore().get_courses() - results = [course for course in course_descriptors if self.user_can_access_course(self.request.user, course)] + # Ensure only course descriptors are returned. + results = (course for course in results if course.scope_ids.block_type == 'course') + + # Ensure only courses accessible by the user are returned. + results = (course for course in results if self.user_can_access_course(self.request.user, course)) # Sort the results in a predictable manner. - results.sort(key=attrgetter('id')) - - return results + return sorted(results, key=attrgetter('id')) class CourseDetail(CourseViewMixin, RetrieveAPIView): diff --git a/lms/djangoapps/courseware/access.py b/lms/djangoapps/courseware/access.py index 8d0ce1a7ca..484c53f347 100644 --- a/lms/djangoapps/courseware/access.py +++ b/lms/djangoapps/courseware/access.py @@ -96,7 +96,7 @@ def has_access(user, action, obj, course_key=None): return _has_access_location(user, action, obj, course_key) if isinstance(obj, basestring): - return _has_access_string(user, action, obj, course_key) + return _has_access_string(user, action, obj) # Passing an unknown object here is a coding error, so rather than # returning a default, complain. @@ -487,7 +487,7 @@ def _has_access_course_key(user, action, course_key): return _dispatch(checkers, action, user, course_key) -def _has_access_string(user, action, perm, course_key): +def _has_access_string(user, action, perm): """ Check if user has certain special access, specified as string. Valid strings: diff --git a/lms/djangoapps/courseware/courses.py b/lms/djangoapps/courseware/courses.py index 5cd8ec0572..9a4f778c0a 100644 --- a/lms/djangoapps/courseware/courses.py +++ b/lms/djangoapps/courseware/courses.py @@ -9,7 +9,7 @@ from django.conf import settings from edxmako.shortcuts import render_to_string from xmodule.modulestore import ModuleStoreEnum -from opaque_keys.edx.keys import CourseKey +from opaque_keys.edx.keys import CourseKey, UsageKey from xmodule.modulestore.django import modulestore from xmodule.contentstore.content import StaticContent from xmodule.modulestore.exceptions import ItemNotFoundError @@ -415,3 +415,29 @@ def get_studio_url(course, page): if is_studio_course and is_mongo_course: studio_link = get_cms_course_link(course, page) return studio_link + + +def get_problems_in_section(section): + """ + This returns a dict having problems in a section. + Returning dict has problem location as keys and problem + descriptor as values. + """ + + problem_descriptors = defaultdict() + if not isinstance(section, UsageKey): + section_key = UsageKey.from_string(section) + else: + section_key = section + # it will be a Mongo performance boost, if you pass in a depth=3 argument here + # as it will optimize round trips to the database to fetch all children for the current node + section_descriptor = modulestore().get_item(section_key, depth=3) + + # iterate over section, sub-section, vertical + for subsection in section_descriptor.get_children(): + for vertical in subsection.get_children(): + for component in vertical.get_children(): + if component.location.category == 'problem' and getattr(component, 'has_score', False): + problem_descriptors[unicode(component.location)] = component + + return problem_descriptors diff --git a/lms/djangoapps/courseware/features/problems.feature b/lms/djangoapps/courseware/features/problems.feature index 1faea5eba9..b1e0359f62 100644 --- a/lms/djangoapps/courseware/features/problems.feature +++ b/lms/djangoapps/courseware/features/problems.feature @@ -119,7 +119,8 @@ Feature: LMS.Answer problems #| string | incorrect | never | | numerical | incorrect | never | | formula | incorrect | never | - | script | incorrect | never | + # TE-572 failing intermittently + #| script | incorrect | never | | radio_text | incorrect | never | | checkbox_text | incorrect | never | | image | incorrect | never | diff --git a/lms/djangoapps/courseware/management/commands/clean_xml.py b/lms/djangoapps/courseware/management/commands/clean_xml.py index 2e87fc5cdf..1b576c264b 100644 --- a/lms/djangoapps/courseware/management/commands/clean_xml.py +++ b/lms/djangoapps/courseware/management/commands/clean_xml.py @@ -45,7 +45,7 @@ def export(course, export_dir): return False -def import_with_checks(course_dir, verbose=True): +def import_with_checks(course_dir): all_ok = True print "Attempting to load '{0}'".format(course_dir) diff --git a/lms/djangoapps/courseware/management/commands/metadata_to_json.py b/lms/djangoapps/courseware/management/commands/metadata_to_json.py deleted file mode 100644 index 45070bb17b..0000000000 --- a/lms/djangoapps/courseware/management/commands/metadata_to_json.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -A script to walk a course xml tree, generate a dictionary of all the metadata, -and print it out as a json dict. -""" -import sys -import json - -from collections import OrderedDict -from path import path - -from django.core.management.base import BaseCommand - -from xmodule.modulestore.xml import XMLModuleStore -from xmodule.x_module import policy_key - - -def import_course(course_dir, verbose=True): - course_dir = path(course_dir) - data_dir = course_dir.dirname() - course_dirs = [course_dir.basename()] - - # No default class--want to complain if it doesn't find plugins for any - # module. - modulestore = XMLModuleStore( - data_dir, - default_class=None, - course_dirs=course_dirs - ) - - def str_of_err(tpl): - (msg, exc_str) = tpl - return '{msg}\n{exc}'.format(msg=msg, exc=exc_str) - - courses = modulestore.get_courses() - - n = len(courses) - if n != 1: - sys.stderr.write('ERROR: Expect exactly 1 course. Loaded {n}: {lst}\n'.format( - n=n, lst=courses)) - return None - - course = courses[0] - errors = modulestore.get_course_errors(course.id) - if len(errors) != 0: - sys.stderr.write('ERRORs during import: {0}\n'.format('\n'.join(map(str_of_err, errors)))) - - return course - - -def node_metadata(node): - # make a copy - to_export = ('format', 'display_name', - 'graceperiod', 'showanswer', 'rerandomize', - 'start', 'due', 'graded', 'hide_from_toc', - 'ispublic', 'xqa_key') - - orig = own_metadata(node) - d = {k: orig[k] for k in to_export if k in orig} - return d - - -def get_metadata(course): - d = OrderedDict({}) - queue = [course] - while len(queue) > 0: - node = queue.pop() - d[policy_key(node.location)] = node_metadata(node) - # want to print first children first, so put them at the end - # (we're popping from the end) - queue.extend(reversed(node.get_children())) - return d - - -def print_metadata(course_dir, output): - course = import_course(course_dir) - if course: - meta = get_metadata(course) - result = json.dumps(meta, indent=4) - if output: - with file(output, 'w') as f: - f.write(result) - else: - print result - - -class Command(BaseCommand): - help = """Imports specified course.xml and prints its -metadata as a json dict. - -Usage: metadata_to_json PATH-TO-COURSE-DIR OUTPUT-PATH - -if OUTPUT-PATH isn't given, print to stdout. -""" - - def handle(self, *args, **options): - n = len(args) - if n < 1 or n > 2: - print Command.help - return - - output_path = args[1] if n > 1 else None - print_metadata(args[0], output_path) diff --git a/lms/djangoapps/courseware/middleware.py b/lms/djangoapps/courseware/middleware.py index 60b803601a..c7f3218199 100644 --- a/lms/djangoapps/courseware/middleware.py +++ b/lms/djangoapps/courseware/middleware.py @@ -13,7 +13,7 @@ class RedirectUnenrolledMiddleware(object): Catch UserNotEnrolled errors thrown by `get_course_with_access` and redirect users to the course about page """ - def process_exception(self, request, exception): + def process_exception(self, _request, exception): if isinstance(exception, UserNotEnrolled): course_key = exception.course_key return redirect( diff --git a/lms/djangoapps/courseware/module_render.py b/lms/djangoapps/courseware/module_render.py index 6fe7f2b276..166bf1029e 100644 --- a/lms/djangoapps/courseware/module_render.py +++ b/lms/djangoapps/courseware/module_render.py @@ -1,3 +1,8 @@ +""" +Module rendering +""" + +import hashlib import json import logging import mimetypes @@ -5,6 +10,7 @@ import mimetypes import static_replace import xblock.reference.plugins +from collections import OrderedDict from functools import partial from requests.auth import HTTPBasicAuth import dogstats_wrapper as dog_stats_api @@ -13,6 +19,8 @@ from opaque_keys import InvalidKeyError from django.conf import settings from django.contrib.auth.models import User from django.core.cache import cache +from django.core.context_processors import csrf +from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.http import Http404, HttpResponse from django.views.decorators.csrf import csrf_exempt @@ -32,7 +40,7 @@ from student.models import anonymous_id_for_user, user_by_anonymous_id from xblock.core import XBlock from xblock.fields import Scope from xblock.runtime import KvsFieldData, KeyValueStore -from xblock.exceptions import NoSuchHandlerError +from xblock.exceptions import NoSuchHandlerError, NoSuchViewError from xblock.django.request import django_to_webob_request, webob_to_django_response from xmodule.error_module import ErrorDescriptor, NonStaffErrorDescriptor from xmodule.exceptions import NotFoundError, ProcessingError @@ -781,7 +789,7 @@ def handle_xblock_callback_noauth(request, course_id, usage_id, handler, suffix= """ request.user.known = False - return _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, request.user) + return _invoke_xblock_handler(request, course_id, usage_id, handler, suffix) def handle_xblock_callback(request, course_id, usage_id, handler, suffix=None): @@ -802,7 +810,7 @@ def handle_xblock_callback(request, course_id, usage_id, handler, suffix=None): if not request.user.is_authenticated(): return HttpResponse('Unauthenticated', status=403) - return _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, request.user) + return _invoke_xblock_handler(request, course_id, usage_id, handler, suffix) def xblock_resource(request, block_type, uri): # pylint: disable=unused-argument @@ -815,38 +823,27 @@ def xblock_resource(request, block_type, uri): # pylint: disable=unused-argumen except IOError: log.info('Failed to load xblock resource', exc_info=True) raise Http404 - except Exception: # pylint: disable-msg=broad-except + except Exception: # pylint: disable=broad-except log.error('Failed to load xblock resource', exc_info=True) raise Http404 mimetype, _ = mimetypes.guess_type(uri) return HttpResponse(content, mimetype=mimetype) -def _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, user): +def _get_module_by_usage_id(request, course_id, usage_id): """ - Invoke an XBlock handler, either authenticated or not. - - Arguments: - request (HttpRequest): the current request - course_id (str): A string of the form org/course/run - usage_id (str): A string of the form i4x://org/course/category/name@revision - handler (str): The name of the handler to invoke - suffix (str): The suffix to pass to the handler when invoked - user (User): The currently logged in user + Gets a module instance based on its `usage_id` in a course, for a given request/user + Returns (instance, tracking_context) """ + user = request.user + try: course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) usage_key = course_id.make_usage_key_from_deprecated_string(unquote_slashes(usage_id)) except InvalidKeyError: raise Http404("Invalid location") - # Check submitted files - files = request.FILES or {} - error_msg = _check_files_limits(files) - if error_msg: - return HttpResponse(json.dumps({'success': error_msg})) - try: descriptor = modulestore().get_item(usage_key) descriptor_orig_usage_key, descriptor_orig_version = modulestore().get_block_original_usage(usage_key) @@ -859,13 +856,13 @@ def _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, user): ) raise Http404 - tracking_context_name = 'module_callback_handler' tracking_context = { 'module': { 'display_name': descriptor.display_name_with_default, 'usage_key': unicode(descriptor.location), } } + # For blocks that are inherited from a content library, we add some additional metadata: if descriptor_orig_usage_key is not None: tracking_context['module']['original_usage_key'] = unicode(descriptor_orig_usage_key) @@ -884,6 +881,30 @@ def _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, user): log.debug("No module %s for user %s -- access denied?", usage_key, user) raise Http404 + return (instance, tracking_context) + + +def _invoke_xblock_handler(request, course_id, usage_id, handler, suffix): + """ + Invoke an XBlock handler, either authenticated or not. + + Arguments: + request (HttpRequest): the current request + course_id (str): A string of the form org/course/run + usage_id (str): A string of the form i4x://org/course/category/name@revision + handler (str): The name of the handler to invoke + suffix (str): The suffix to pass to the handler when invoked + """ + + # Check submitted files + files = request.FILES or {} + error_msg = _check_files_limits(files) + if error_msg: + return JsonResponse(object={'success': error_msg}, status=413) + + instance, tracking_context = _get_module_by_usage_id(request, course_id, usage_id) + + tracking_context_name = 'module_callback_handler' req = django_to_webob_request(request) try: with tracker.get_tracker().context(tracking_context_name, tracking_context): @@ -912,6 +933,52 @@ def _invoke_xblock_handler(request, course_id, usage_id, handler, suffix, user): return webob_to_django_response(resp) +def hash_resource(resource): + """ + Hash a :class:`xblock.fragment.FragmentResource + """ + md5 = hashlib.md5() + for data in resource: + md5.update(repr(data)) + return md5.hexdigest() + + +def xblock_view(request, course_id, usage_id, view_name): + """ + Returns the rendered view of a given XBlock, with related resources + + Returns a json object containing two keys: + html: The rendered html of the view + resources: A list of tuples where the first element is the resource hash, and + the second is the resource description + """ + if not settings.FEATURES.get('ENABLE_XBLOCK_VIEW_ENDPOINT', False): + log.warn("Attempt to use deactivated XBlock view endpoint -" + " see FEATURES['ENABLE_XBLOCK_VIEW_ENDPOINT']") + raise Http404 + + if not request.user.is_authenticated(): + raise PermissionDenied + + instance, _ = _get_module_by_usage_id(request, course_id, usage_id) + + try: + fragment = instance.render(view_name, context=request.GET) + except NoSuchViewError: + log.exception("Attempt to render missing view on %s: %s", instance, view_name) + raise Http404 + + hashed_resources = OrderedDict() + for resource in fragment.resources: + hashed_resources[hash_resource(resource)] = resource + + return JsonResponse({ + 'html': fragment.content, + 'resources': hashed_resources.items(), + 'csrf_token': str(csrf(request)['csrf_token']), + }) + + def get_score_bucket(grade, max_grade): """ Function to split arbitrary score ranges into 3 buckets. diff --git a/lms/djangoapps/courseware/tests/test_access.py b/lms/djangoapps/courseware/tests/test_access.py index fe0295819e..bf0daeb872 100644 --- a/lms/djangoapps/courseware/tests/test_access.py +++ b/lms/djangoapps/courseware/tests/test_access.py @@ -88,12 +88,12 @@ class AccessTestCase(LoginEnrollmentTestCase, ModuleStoreTestCase): def test__has_access_string(self): user = Mock(is_staff=True) - self.assertFalse(access._has_access_string(user, 'staff', 'not_global', self.course.course_key)) + self.assertFalse(access._has_access_string(user, 'staff', 'not_global')) user._has_global_staff_access.return_value = True - self.assertTrue(access._has_access_string(user, 'staff', 'global', self.course.course_key)) + self.assertTrue(access._has_access_string(user, 'staff', 'global')) - self.assertRaises(ValueError, access._has_access_string, user, 'not_staff', 'global', self.course.course_key) + self.assertRaises(ValueError, access._has_access_string, user, 'not_staff', 'global') def test__has_access_error_desc(self): descriptor = Mock() diff --git a/lms/djangoapps/courseware/tests/test_module_render.py b/lms/djangoapps/courseware/tests/test_module_render.py index 2a12a8c3ea..278a28a108 100644 --- a/lms/djangoapps/courseware/tests/test_module_render.py +++ b/lms/djangoapps/courseware/tests/test_module_render.py @@ -16,6 +16,7 @@ from django.contrib.auth.models import AnonymousUser from mock import MagicMock, patch, Mock from opaque_keys.edx.keys import UsageKey, CourseKey from opaque_keys.edx.locations import SlashSeparatedCourseKey +from courseware.module_render import hash_resource from xblock.field_data import FieldData from xblock.runtime import Runtime from xblock.fields import ScopeIds @@ -246,6 +247,14 @@ class ModuleRenderTestCase(ModuleStoreTestCase, LoginEnrollmentTestCase): render.get_module_for_descriptor(self.mock_user, request, descriptor, field_data_cache, self.toy_course.id) render.get_module_for_descriptor(self.mock_user, request, descriptor, field_data_cache, self.toy_course.id) + def test_hash_resource(self): + """ + Ensure that the resource hasher works and does not fail on unicode, + decoded or otherwise. + """ + resources = ['ASCII text', u'❄ I am a special snowflake.', "❄ So am I, but I didn't tell you."] + self.assertEqual(hash_resource(resources), 'a76e27c8e80ca3efd7ce743093aa59e0') + class TestHandleXBlockCallback(ModuleStoreTestCase, LoginEnrollmentTestCase): """ @@ -316,7 +325,7 @@ class TestHandleXBlockCallback(ModuleStoreTestCase, LoginEnrollmentTestCase): json.dumps({ 'success': 'Submission aborted! Maximum %d files may be submitted at once' % settings.MAX_FILEUPLOADS_PER_INPUT - }) + }, indent=2) ) def test_too_large_file(self): @@ -336,7 +345,7 @@ class TestHandleXBlockCallback(ModuleStoreTestCase, LoginEnrollmentTestCase): json.dumps({ 'success': 'Submission aborted! Your file "%s" is too large (max size: %d MB)' % (inputfile.name, settings.STUDENT_FILEUPLOAD_MAX_SIZE / (1000 ** 2)) - }) + }, indent=2) ) def test_xmodule_dispatch(self): @@ -399,6 +408,29 @@ class TestHandleXBlockCallback(ModuleStoreTestCase, LoginEnrollmentTestCase): 'bad_dispatch', ) + @patch.dict('django.conf.settings.FEATURES', {'ENABLE_XBLOCK_VIEW_ENDPOINT': True}) + def test_xblock_view_handler(self): + args = [ + 'edX/toy/2012_Fall', + quote_slashes('i4x://edX/toy/videosequence/Toy_Videos'), + 'student_view' + ] + xblock_view_url = reverse( + 'xblock_view', + args=args + ) + + request = self.request_factory.get(xblock_view_url) + request.user = self.mock_user + response = render.xblock_view(request, *args) + self.assertEquals(200, response.status_code) + + expected = ['csrf_token', 'html', 'resources'] + content = json.loads(response.content) + for section in expected: + self.assertIn(section, content) + self.assertIn('
0] + success_cutoff = min(nonzero_cutoffs) if nonzero_cutoffs else None + + if grade_summary is None: + grade_summary = grades.grade(student, request, course) + + return success_cutoff and grade_summary['percent'] > success_cutoff + + +@ensure_csrf_cookie +@require_POST +def generate_user_cert(request, course_id): + """ + It will check all validation and on clearance will add the new-certificate request into the xqueue. + + Args: + request (django request object): the HTTP request object that triggered this view function + course_id (unicode): id associated with the course + + Returns: + returns json response + """ + + if not request.user.is_authenticated(): + log.info(u"Anon user trying to generate certificate for %s", course_id) + return HttpResponseBadRequest( + _('You must be signed in to {platform_name} to create a certificate.').format( + platform_name=settings.PLATFORM_NAME + ) + ) + + student = request.user + + course_key = CourseKey.from_string(course_id) + + course = modulestore().get_course(course_key, depth=2) + if not course: + return HttpResponseBadRequest(_("Course is not valid")) + + if not is_course_passed(course, None, student, request): + return HttpResponseBadRequest(_("Your certificate will be available when you pass the course.")) + + certificate_status = certificate_downloadable_status(student, course.id) + + if not certificate_status["is_downloadable"] and not certificate_status["is_generating"]: + generate_user_certificates(student, course) + return HttpResponse(_("Creating certificate")) + + # if certificate_status is not is_downloadable and is_generating or + # if any error appears during certificate generation return the message cert is generating. + # with badrequest + # at backend debug the issue and re-submit the task. + + return HttpResponseBadRequest(_("Creating certificate")) diff --git a/lms/djangoapps/dashboard/models.py b/lms/djangoapps/dashboard/models.py index 2fa3e17678..a92a418871 100644 --- a/lms/djangoapps/dashboard/models.py +++ b/lms/djangoapps/dashboard/models.py @@ -6,8 +6,6 @@ from xmodule.modulestore.mongoengine_fields import CourseKeyField class CourseImportLog(mongoengine.Document): """Mongoengine model for git log""" - # pylint: disable=incomplete-protocol - course_id = CourseKeyField(max_length=128) # NOTE: this location is not a Location object but a pathname location = mongoengine.StringField(max_length=168) diff --git a/lms/djangoapps/dashboard/support.py b/lms/djangoapps/dashboard/support.py index 02fcf6d4cd..eda7a31218 100644 --- a/lms/djangoapps/dashboard/support.py +++ b/lms/djangoapps/dashboard/support.py @@ -18,7 +18,7 @@ from opaque_keys.edx.locations import SlashSeparatedCourseKey log = logging.getLogger(__name__) -class RefundForm(forms.Form): # pylint: disable=incomplete-protocol +class RefundForm(forms.Form): """ Form for manual refunds """ diff --git a/lms/djangoapps/dashboard/sysadmin.py b/lms/djangoapps/dashboard/sysadmin.py index a7a401f1b7..f139a759a3 100644 --- a/lms/djangoapps/dashboard/sysadmin.py +++ b/lms/djangoapps/dashboard/sysadmin.py @@ -15,6 +15,7 @@ from django.contrib.auth import authenticate from django.contrib.auth.decorators import login_required from django.contrib.auth.models import User from django.core.exceptions import PermissionDenied +from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage from django.db import IntegrityError from django.http import HttpResponse, Http404 from django.utils.decorators import method_decorator @@ -684,6 +685,8 @@ class GitLogs(TemplateView): if course_id: course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) + page_size = 10 + # Set mongodb defaults even if it isn't defined in settings mongo_db = { 'host': 'localhost', @@ -715,7 +718,7 @@ class GitLogs(TemplateView): # Require staff if not going to specific course if not request.user.is_staff: raise Http404 - cilset = CourseImportLog.objects.all().order_by('-created') + cilset = CourseImportLog.objects.order_by('-created') else: try: course = get_course_by_id(course_id) @@ -729,11 +732,29 @@ class GitLogs(TemplateView): CourseStaffRole(course.id).has_user(request.user)): raise Http404 log.debug('course_id={0}'.format(course_id)) - cilset = CourseImportLog.objects.filter(course_id=course_id).order_by('-created') + cilset = CourseImportLog.objects.filter( + course_id=course_id + ).order_by('-created') log.debug('cilset length={0}'.format(len(cilset))) + + # Paginate the query set + paginator = Paginator(cilset, page_size) + try: + logs = paginator.page(request.GET.get('page')) + except PageNotAnInteger: + logs = paginator.page(1) + except EmptyPage: + # If the page is too high or low + given_page = int(request.GET.get('page')) + page = min(max(1, given_page), paginator.num_pages) + logs = paginator.page(page) + mdb.disconnect() - context = {'cilset': cilset, - 'course_id': course_id.to_deprecated_string() if course_id else None, - 'error_msg': error_msg} + context = { + 'logs': logs, + 'course_id': course_id.to_deprecated_string() if course_id else None, + 'error_msg': error_msg, + 'page_size': page_size + } return render_to_response(self.template_name, context) diff --git a/lms/djangoapps/dashboard/tests/test_sysadmin.py b/lms/djangoapps/dashboard/tests/test_sysadmin.py index afcdf25523..5a98f9ec5e 100644 --- a/lms/djangoapps/dashboard/tests/test_sysadmin.py +++ b/lms/djangoapps/dashboard/tests/test_sysadmin.py @@ -25,6 +25,7 @@ from xmodule.modulestore.tests.django_utils import ( from dashboard.models import CourseImportLog from dashboard.sysadmin import Users from dashboard.git_import import GitImportError +from datetime import datetime from external_auth.models import ExternalAuthMap from student.roles import CourseStaffRole, GlobalStaff from student.tests.factories import UserFactory @@ -581,6 +582,40 @@ class TestSysAdminMongoCourseImport(SysadminBaseTestCase): self._rm_edx4edx() + def test_gitlog_pagination_out_of_range_invalid(self): + """ + Make sure the pagination behaves properly when the requested page is out + of range. + """ + + self._setstaff_login() + + mongoengine.connect(TEST_MONGODB_LOG['db']) + + for _ in xrange(15): + CourseImportLog( + course_id=SlashSeparatedCourseKey("test", "test", "test"), + location="location", + import_log="import_log", + git_log="git_log", + repo_dir="repo_dir", + created=datetime.now() + ).save() + + for page, expected in [(-1, 1), (1, 1), (2, 2), (30, 2), ('abc', 1)]: + response = self.client.get( + '{}?page={}'.format( + reverse('gitlogs'), + page + ) + ) + self.assertIn( + 'Page {} of 2'.format(expected), + response.content + ) + + CourseImportLog.objects.delete() + def test_gitlog_courseteam_access(self): """ Ensure course team users are allowed to access only their own course. diff --git a/lms/djangoapps/django_comment_client/mustache_helpers.py b/lms/djangoapps/django_comment_client/mustache_helpers.py deleted file mode 100644 index cfda1c7a1d..0000000000 --- a/lms/djangoapps/django_comment_client/mustache_helpers.py +++ /dev/null @@ -1,32 +0,0 @@ -from django.utils.translation import ugettext as _ -import django.core.urlresolvers as urlresolvers -import sys -import inspect - -# This method is used to pluralize the words "discussion" and "comment" -# which is why you need to tack on an "s" for the case of 0 or two or more. - - -def pluralize(content, text): - num, word = text.split(' ') - num = int(num or '0') - if num >= 2 or num == 0: - return word + 's' - else: - return word - - -def url_for_user(content, user_id): - return urlresolvers.reverse('django_comment_client.forum.views.user_profile', args=[content['course_id'], user_id]) - - -def close_thread_text(content): - if content.get('closed'): - return _('Re-open thread') - else: - return _('Close thread') - -current_module = sys.modules[__name__] -all_functions = inspect.getmembers(current_module, inspect.isfunction) - -mustache_helpers = {k: v for k, v in all_functions if not k.startswith('_')} diff --git a/lms/djangoapps/django_comment_client/tests/test_mustache_helpers.py b/lms/djangoapps/django_comment_client/tests/test_mustache_helpers.py deleted file mode 100644 index 67ca9697e4..0000000000 --- a/lms/djangoapps/django_comment_client/tests/test_mustache_helpers.py +++ /dev/null @@ -1,27 +0,0 @@ -from django.test import TestCase -import django_comment_client.mustache_helpers as mustache_helpers - - -class PluralizeTest(TestCase): - def setUp(self): - super(PluralizeTest, self).setUp() - self.text1 = '0 goat' - self.text2 = '1 goat' - self.text3 = '7 goat' - self.content = 'unused argument' - - def test_pluralize(self): - self.assertEqual(mustache_helpers.pluralize(self.content, self.text1), 'goats') - self.assertEqual(mustache_helpers.pluralize(self.content, self.text2), 'goat') - self.assertEqual(mustache_helpers.pluralize(self.content, self.text3), 'goats') - - -class CloseThreadTextTest(TestCase): - def setUp(self): - super(CloseThreadTextTest, self).setUp() - self.contentClosed = {'closed': True} - self.contentOpen = {'closed': False} - - def test_close_thread_text(self): - self.assertEqual(mustache_helpers.close_thread_text(self.contentClosed), 'Re-open thread') - self.assertEqual(mustache_helpers.close_thread_text(self.contentOpen), 'Close thread') diff --git a/lms/djangoapps/instructor/tests/test_api.py b/lms/djangoapps/instructor/tests/test_api.py index 9a2dbbc876..f458a27ac6 100644 --- a/lms/djangoapps/instructor/tests/test_api.py +++ b/lms/djangoapps/instructor/tests/test_api.py @@ -45,7 +45,7 @@ from student.models import ( CourseEnrollment, CourseEnrollmentAllowed, NonExistentCourseError ) from student.tests.factories import UserFactory, CourseModeFactory -from student.roles import CourseBetaTesterRole, CourseSalesAdminRole, CourseFinanceAdminRole +from student.roles import CourseBetaTesterRole, CourseSalesAdminRole, CourseFinanceAdminRole, CourseInstructorRole from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore.django import modulestore from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase @@ -2180,6 +2180,7 @@ class TestInstructorAPIRegradeTask(ModuleStoreTestCase, LoginEnrollmentTestCase) self.course.id, 'robot-some-problem-urlname' ) + self.problem_urlname = self.problem_location.to_deprecated_string() self.module_to_reset = StudentModule.objects.create( @@ -2297,7 +2298,251 @@ class TestInstructorAPIRegradeTask(ModuleStoreTestCase, LoginEnrollmentTestCase) self.assertEqual(response.status_code, 200) self.assertTrue(act.called) + @patch.dict(settings.FEATURES, {'ENTRANCE_EXAMS': True}) + def test_course_has_entrance_exam_in_student_attempts_reset(self): + """ Test course has entrance exam id set while resetting attempts""" + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'all_students': True, + 'delete_module': False, + }) + self.assertEqual(response.status_code, 400) + @patch.dict(settings.FEATURES, {'ENTRANCE_EXAMS': True}) + def test_rescore_entrance_exam_with_invalid_exam(self): + """ Test course has entrance exam id set while re-scoring. """ + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 400) + + +@override_settings(MODULESTORE=TEST_DATA_MOCK_MODULESTORE) +@patch.dict(settings.FEATURES, {'ENTRANCE_EXAMS': True}) +class TestEntranceExamInstructorAPIRegradeTask(ModuleStoreTestCase, LoginEnrollmentTestCase): + """ + Test endpoints whereby instructors can rescore student grades, + reset student attempts and delete state for entrance exam. + """ + + def setUp(self): + super(TestEntranceExamInstructorAPIRegradeTask, self).setUp() + self.course = CourseFactory.create( + org='test_org', + course='test_course', + run='test_run', + entrance_exam_id='i4x://{}/{}/chapter/Entrance_exam'.format('test_org', 'test_course') + ) + self.course_with_invalid_ee = CourseFactory.create(entrance_exam_id='invalid_exam') + + self.instructor = InstructorFactory(course_key=self.course.id) + # Add instructor to invalid ee course + CourseInstructorRole(self.course_with_invalid_ee.id).add_users(self.instructor) + self.client.login(username=self.instructor.username, password='test') + + self.student = UserFactory() + CourseEnrollment.enroll(self.student, self.course.id) + + self.entrance_exam = ItemFactory.create( + parent=self.course, + category='chapter', + display_name='Entrance exam' + ) + subsection = ItemFactory.create( + parent=self.entrance_exam, + category='sequential', + display_name='Subsection 1' + ) + vertical = ItemFactory.create( + parent=subsection, + category='vertical', + display_name='Vertical 1' + ) + self.ee_problem_1 = ItemFactory.create( + parent=vertical, + category="problem", + display_name="Exam Problem - Problem 1" + ) + self.ee_problem_2 = ItemFactory.create( + parent=vertical, + category="problem", + display_name="Exam Problem - Problem 2" + ) + + ee_module_to_reset1 = StudentModule.objects.create( + student=self.student, + course_id=self.course.id, + module_state_key=self.ee_problem_1.location, + state=json.dumps({'attempts': 10}), + ) + ee_module_to_reset2 = StudentModule.objects.create( + student=self.student, + course_id=self.course.id, + module_state_key=self.ee_problem_2.location, + state=json.dumps({'attempts': 10}), + ) + self.ee_modules = [ee_module_to_reset1.module_state_key, ee_module_to_reset2.module_state_key] + + def test_reset_entrance_exam_student_attempts_deletall(self): + """ Make sure no one can delete all students state on entrance exam. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'all_students': True, + 'delete_module': True, + }) + self.assertEqual(response.status_code, 400) + + def test_reset_entrance_exam_student_attempts_single(self): + """ Test reset single student attempts for entrance exam. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 200) + # make sure problem attempts have been reset. + changed_modules = StudentModule.objects.filter(module_state_key__in=self.ee_modules) + for changed_module in changed_modules: + self.assertEqual( + json.loads(changed_module.state)['attempts'], + 0 + ) + + # mock out the function which should be called to execute the action. + @patch.object(instructor_task.api, 'submit_reset_problem_attempts_in_entrance_exam') + def test_reset_entrance_exam_all_student_attempts(self, act): + """ Test reset all student attempts for entrance exam. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'all_students': True, + }) + self.assertEqual(response.status_code, 200) + self.assertTrue(act.called) + + def test_reset_student_attempts_invalid_entrance_exam(self): + """ Test reset for invalid entrance exam. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course_with_invalid_ee.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 400) + + def test_entrance_exam_sttudent_delete_state(self): + """ Test delete single student entrance exam state. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + 'delete_module': True, + }) + self.assertEqual(response.status_code, 200) + # make sure the module has been deleted + changed_modules = StudentModule.objects.filter(module_state_key__in=self.ee_modules) + self.assertEqual(changed_modules.count(), 0) + + def test_entrance_exam_delete_state_with_staff(self): + """ Test entrance exam delete state failure with staff access. """ + self.client.logout() + staff_user = StaffFactory(course_key=self.course.id) + self.client.login(username=staff_user.username, password='test') + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + 'delete_module': True, + }) + self.assertEqual(response.status_code, 403) + + def test_entrance_exam_reset_student_attempts_nonsense(self): + """ Test failure with both unique_student_identifier and all_students. """ + url = reverse('reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + 'all_students': True, + }) + self.assertEqual(response.status_code, 400) + + @patch.object(instructor_task.api, 'submit_rescore_entrance_exam_for_student') + def test_rescore_entrance_exam_single_student(self, act): + """ Test re-scoring of entrance exam for single student. """ + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 200) + self.assertTrue(act.called) + + def test_rescore_entrance_exam_all_student(self): + """ Test rescoring for all students. """ + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'all_students': True, + }) + self.assertEqual(response.status_code, 200) + + def test_rescore_entrance_exam_all_student_and_single(self): + """ Test re-scoring with both all students and single student parameters. """ + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + 'all_students': True, + }) + self.assertEqual(response.status_code, 400) + + def test_rescore_entrance_exam_with_invalid_exam(self): + """ Test re-scoring of entrance exam with invalid exam. """ + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course_with_invalid_ee.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 400) + + def test_list_entrance_exam_instructor_tasks_student(self): + """ Test list task history for entrance exam AND student. """ + # create a re-score entrance exam task + url = reverse('rescore_entrance_exam', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 200) + + url = reverse('list_entrance_exam_instructor_tasks', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 200) + + # check response + tasks = json.loads(response.content)['tasks'] + self.assertEqual(len(tasks), 1) + + def test_list_entrance_exam_instructor_tasks_all_student(self): + """ Test list task history for entrance exam AND all student. """ + url = reverse('list_entrance_exam_instructor_tasks', kwargs={'course_id': unicode(self.course.id)}) + response = self.client.get(url, {}) + self.assertEqual(response.status_code, 200) + + # check response + tasks = json.loads(response.content)['tasks'] + self.assertEqual(len(tasks), 0) + + def test_list_entrance_exam_instructor_with_invalid_exam_key(self): + """ Test list task history for entrance exam failure if course has invalid exam. """ + url = reverse('list_entrance_exam_instructor_tasks', + kwargs={'course_id': unicode(self.course_with_invalid_ee.id)}) + response = self.client.get(url, { + 'unique_student_identifier': self.student.email, + }) + self.assertEqual(response.status_code, 400) + + +@override_settings(MODULESTORE=TEST_DATA_MOCK_MODULESTORE) @patch('bulk_email.models.html_to_text', Mock(return_value='Mocking CourseEmail.text_message')) @patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': False}) class TestInstructorSendEmail(ModuleStoreTestCase, LoginEnrollmentTestCase): @@ -2432,8 +2677,9 @@ class TestInstructorAPITaskLists(ModuleStoreTestCase, LoginEnrollmentTestCase): def setUp(self): super(TestInstructorAPITaskLists, self).setUp() - - self.course = CourseFactory.create() + self.course = CourseFactory.create( + entrance_exam_id='i4x://{}/{}/chapter/Entrance_exam'.format('test_org', 'test_course') + ) self.instructor = InstructorFactory(course_key=self.course.id) self.client.login(username=self.instructor.username, password='test') diff --git a/lms/djangoapps/instructor/views/api.py b/lms/djangoapps/instructor/views/api.py index 5e923bfe76..ec8fb0e1b1 100644 --- a/lms/djangoapps/instructor/views/api.py +++ b/lms/djangoapps/instructor/views/api.py @@ -1605,6 +1605,71 @@ def reset_student_attempts(request, course_id): return JsonResponse(response_payload) +@ensure_csrf_cookie +@cache_control(no_cache=True, no_store=True, must_revalidate=True) +@require_level('staff') +@common_exceptions_400 +def reset_student_attempts_for_entrance_exam(request, course_id): # pylint: disable=invalid-name + """ + + Resets a students attempts counter or starts a task to reset all students + attempts counters for entrance exam. Optionally deletes student state for + entrance exam. Limited to staff access. Some sub-methods limited to instructor access. + + Following are possible query parameters + - unique_student_identifier is an email or username + - all_students is a boolean + requires instructor access + mutually exclusive with delete_module + - delete_module is a boolean + requires instructor access + mutually exclusive with all_students + """ + course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) + course = get_course_with_access( + request.user, 'staff', course_id, depth=None + ) + + if not course.entrance_exam_id: + return HttpResponseBadRequest( + _("Course has no entrance exam section.") + ) + + student_identifier = request.GET.get('unique_student_identifier', None) + student = None + if student_identifier is not None: + student = get_student_from_identifier(student_identifier) + all_students = request.GET.get('all_students', False) in ['true', 'True', True] + delete_module = request.GET.get('delete_module', False) in ['true', 'True', True] + + # parameter combinations + if all_students and student: + return HttpResponseBadRequest( + _("all_students and unique_student_identifier are mutually exclusive.") + ) + if all_students and delete_module: + return HttpResponseBadRequest( + _("all_students and delete_module are mutually exclusive.") + ) + + # instructor authorization + if all_students or delete_module: + if not has_access(request.user, 'instructor', course): + return HttpResponseForbidden(_("Requires instructor access.")) + + try: + entrance_exam_key = course_id.make_usage_key_from_deprecated_string(course.entrance_exam_id) + if delete_module: + instructor_task.api.submit_delete_entrance_exam_state_for_student(request, entrance_exam_key, student) + else: + instructor_task.api.submit_reset_problem_attempts_in_entrance_exam(request, entrance_exam_key, student) + except InvalidKeyError: + return HttpResponseBadRequest(_("Course has no valid entrance exam section.")) + + response_payload = {'student': student_identifier or _('All Students'), 'task': 'created'} + return JsonResponse(response_payload) + + @ensure_csrf_cookie @cache_control(no_cache=True, no_store=True, must_revalidate=True) @require_level('instructor') @@ -1660,6 +1725,58 @@ def rescore_problem(request, course_id): return JsonResponse(response_payload) +@ensure_csrf_cookie +@cache_control(no_cache=True, no_store=True, must_revalidate=True) +@require_level('instructor') +@common_exceptions_400 +def rescore_entrance_exam(request, course_id): + """ + Starts a background process a students attempts counter for entrance exam. + Optionally deletes student state for a problem. Limited to instructor access. + + Takes either of the following query parameters + - unique_student_identifier is an email or username + - all_students is a boolean + + all_students and unique_student_identifier cannot both be present. + """ + course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) + course = get_course_with_access( + request.user, 'staff', course_id, depth=None + ) + + student_identifier = request.GET.get('unique_student_identifier', None) + student = None + if student_identifier is not None: + student = get_student_from_identifier(student_identifier) + + all_students = request.GET.get('all_students') in ['true', 'True', True] + + if not course.entrance_exam_id: + return HttpResponseBadRequest( + _("Course has no entrance exam section.") + ) + + if all_students and student: + return HttpResponseBadRequest( + _("Cannot rescore with all_students and unique_student_identifier.") + ) + + try: + entrance_exam_key = course_id.make_usage_key_from_deprecated_string(course.entrance_exam_id) + except InvalidKeyError: + return HttpResponseBadRequest(_("Course has no valid entrance exam section.")) + + response_payload = {} + if student: + response_payload['student'] = student_identifier + else: + response_payload['student'] = _("All Students") + instructor_task.api.submit_rescore_entrance_exam_for_student(request, entrance_exam_key, student) + response_payload['task'] = 'created' + return JsonResponse(response_payload) + + @ensure_csrf_cookie @cache_control(no_cache=True, no_store=True, must_revalidate=True) @require_level('staff') @@ -1741,6 +1858,40 @@ def list_instructor_tasks(request, course_id): return JsonResponse(response_payload) +@ensure_csrf_cookie +@cache_control(no_cache=True, no_store=True, must_revalidate=True) +@require_level('staff') +def list_entrance_exam_instructor_tasks(request, course_id): # pylint: disable=invalid-name + """ + List entrance exam related instructor tasks. + + Takes either of the following query parameters + - unique_student_identifier is an email or username + - all_students is a boolean + """ + course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) + course = get_course_by_id(course_id) + student = request.GET.get('unique_student_identifier', None) + if student is not None: + student = get_student_from_identifier(student) + + try: + entrance_exam_key = course_id.make_usage_key_from_deprecated_string(course.entrance_exam_id) + except InvalidKeyError: + return HttpResponseBadRequest(_("Course has no valid entrance exam section.")) + if student: + # Specifying for a single student's entrance exam history + tasks = instructor_task.api.get_entrance_exam_instructor_task_history(course_id, entrance_exam_key, student) + else: + # Specifying for all student's entrance exam history + tasks = instructor_task.api.get_entrance_exam_instructor_task_history(course_id, entrance_exam_key) + + response_payload = { + 'tasks': map(extract_task_features, tasks), + } + return JsonResponse(response_payload) + + @ensure_csrf_cookie @cache_control(no_cache=True, no_store=True, must_revalidate=True) @require_level('staff') diff --git a/lms/djangoapps/instructor/views/api_urls.py b/lms/djangoapps/instructor/views/api_urls.py index 328190cdae..7fcc76923d 100644 --- a/lms/djangoapps/instructor/views/api_urls.py +++ b/lms/djangoapps/instructor/views/api_urls.py @@ -1,3 +1,4 @@ +# pylint: disable=bad-continuation """ Instructor API endpoint urls. """ @@ -35,8 +36,16 @@ urlpatterns = patterns('', # nopep8 'instructor.views.api.get_student_progress_url', name="get_student_progress_url"), url(r'^reset_student_attempts$', 'instructor.views.api.reset_student_attempts', name="reset_student_attempts"), - url(r'^rescore_problem$', - 'instructor.views.api.rescore_problem', name="rescore_problem"), + url(r'^rescore_problem$', 'instructor.views.api.rescore_problem', name="rescore_problem"), + # entrance exam tasks + url(r'^reset_student_attempts_for_entrance_exam$', + 'instructor.views.api.reset_student_attempts_for_entrance_exam', + name="reset_student_attempts_for_entrance_exam"), + url(r'^rescore_entrance_exam$', + 'instructor.views.api.rescore_entrance_exam', name="rescore_entrance_exam"), + url(r'^list_entrance_exam_instructor_tasks', + 'instructor.views.api.list_entrance_exam_instructor_tasks', name="list_entrance_exam_instructor_tasks"), + url(r'^list_instructor_tasks$', 'instructor.views.api.list_instructor_tasks', name="list_instructor_tasks"), url(r'^list_background_email_tasks$', diff --git a/lms/djangoapps/instructor/views/instructor_dashboard.py b/lms/djangoapps/instructor/views/instructor_dashboard.py index 7a10e24395..3fb29cb651 100644 --- a/lms/djangoapps/instructor/views/instructor_dashboard.py +++ b/lms/djangoapps/instructor/views/instructor_dashboard.py @@ -304,8 +304,15 @@ def _section_student_admin(course, access): 'get_student_progress_url_url': reverse('get_student_progress_url', kwargs={'course_id': unicode(course_key)}), 'enrollment_url': reverse('students_update_enrollment', kwargs={'course_id': unicode(course_key)}), 'reset_student_attempts_url': reverse('reset_student_attempts', kwargs={'course_id': unicode(course_key)}), + 'reset_student_attempts_for_entrance_exam_url': reverse( + 'reset_student_attempts_for_entrance_exam', + kwargs={'course_id': unicode(course_key)}, + ), 'rescore_problem_url': reverse('rescore_problem', kwargs={'course_id': unicode(course_key)}), + 'rescore_entrance_exam_url': reverse('rescore_entrance_exam', kwargs={'course_id': unicode(course_key)}), 'list_instructor_tasks_url': reverse('list_instructor_tasks', kwargs={'course_id': unicode(course_key)}), + 'list_entrace_exam_instructor_tasks_url': reverse('list_entrance_exam_instructor_tasks', + kwargs={'course_id': unicode(course_key)}), 'spoc_gradebook_url': reverse('spoc_gradebook', kwargs={'course_id': unicode(course_key)}), } return section_data diff --git a/lms/djangoapps/instructor_task/api.py b/lms/djangoapps/instructor_task/api.py index 5f18c86342..51aa63c8e6 100644 --- a/lms/djangoapps/instructor_task/api.py +++ b/lms/djangoapps/instructor_task/api.py @@ -23,9 +23,13 @@ from instructor_task.tasks import ( cohort_students, ) -from instructor_task.api_helper import (check_arguments_for_rescoring, - encode_problem_and_student_input, - submit_task) +from instructor_task.api_helper import ( + check_arguments_for_rescoring, + encode_problem_and_student_input, + encode_entrance_exam_and_student_input, + check_entrance_exam_problems_for_rescoring, + submit_task, +) from bulk_email.models import CourseEmail @@ -57,6 +61,19 @@ def get_instructor_task_history(course_id, usage_key=None, student=None, task_ty return instructor_tasks.order_by('-id') +def get_entrance_exam_instructor_task_history(course_id, usage_key=None, student=None): # pylint: disable=invalid-name + """ + Returns a query of InstructorTask objects of historical tasks for a given course, + that optionally match an entrance exam and student if present. + """ + instructor_tasks = InstructorTask.objects.filter(course_id=course_id) + if usage_key is not None or student is not None: + _, task_key = encode_entrance_exam_and_student_input(usage_key, student) + instructor_tasks = instructor_tasks.filter(task_key=task_key) + + return instructor_tasks.order_by('-id') + + # Disabling invalid-name because this fn name is longer than 30 chars. def submit_rescore_problem_for_student(request, usage_key, student): # pylint: disable=invalid-name """ @@ -117,6 +134,38 @@ def submit_rescore_problem_for_all_students(request, usage_key): # pylint: disa return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) +def submit_rescore_entrance_exam_for_student(request, usage_key, student=None): # pylint: disable=invalid-name + """ + Request entrance exam problems to be re-scored as a background task. + + The entrance exam problems will be re-scored for given student or if student + is None problems for all students who have accessed the entrance exam. + + Parameters are `usage_key`, which must be a :class:`Location` + representing entrance exam section and the `student` as a User object. + + ItemNotFoundError is raised if entrance exam does not exists for given + usage_key, AlreadyRunningError is raised if the entrance exam + is already being re-scored, or NotImplementedError if the problem doesn't + support rescoring. + + This method makes sure the InstructorTask entry is committed. + When called from any view that is wrapped by TransactionMiddleware, + and thus in a "commit-on-success" transaction, an autocommit buried within here + will cause any pending transaction to be committed by a successful + save here. Any future database operations will take place in a + separate transaction. + """ + # check problems for rescoring: let exceptions return up to the caller. + check_entrance_exam_problems_for_rescoring(usage_key) + + # check to see if task is already running, and reserve it otherwise + task_type = 'rescore_problem' + task_class = rescore_problem + task_input, task_key = encode_entrance_exam_and_student_input(usage_key, student) + return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) + + def submit_reset_problem_attempts_for_all_students(request, usage_key): # pylint: disable=invalid-name """ Request to have attempts reset for a problem as a background task. @@ -146,6 +195,37 @@ def submit_reset_problem_attempts_for_all_students(request, usage_key): # pylin return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) +def submit_reset_problem_attempts_in_entrance_exam(request, usage_key, student): # pylint: disable=invalid-name + """ + Request to have attempts reset for a entrance exam as a background task. + + Problem attempts for all problems in entrance exam will be reset + for specified student. If student is None problem attempts will be + reset for all students. + + Parameters are `usage_key`, which must be a :class:`Location` + representing entrance exam section and the `student` as a User object. + + ItemNotFoundError is raised if entrance exam does not exists for given + usage_key, AlreadyRunningError is raised if the entrance exam + is already being reset. + + This method makes sure the InstructorTask entry is committed. + When called from any view that is wrapped by TransactionMiddleware, + and thus in a "commit-on-success" transaction, an autocommit buried within here + will cause any pending transaction to be committed by a successful + save here. Any future database operations will take place in a + separate transaction. + """ + # check arguments: make sure entrance exam(section) exists for given usage_key + modulestore().get_item(usage_key) + + task_type = 'reset_problem_attempts' + task_class = reset_problem_attempts + task_input, task_key = encode_entrance_exam_and_student_input(usage_key, student) + return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) + + def submit_delete_problem_state_for_all_students(request, usage_key): # pylint: disable=invalid-name """ Request to have state deleted for a problem as a background task. @@ -175,6 +255,36 @@ def submit_delete_problem_state_for_all_students(request, usage_key): # pylint: return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) +def submit_delete_entrance_exam_state_for_student(request, usage_key, student): # pylint: disable=invalid-name + """ + Requests reset of state for entrance exam as a background task. + + Module state for all problems in entrance exam will be deleted + for specified student. + + Parameters are `usage_key`, which must be a :class:`Location` + representing entrance exam section and the `student` as a User object. + + ItemNotFoundError is raised if entrance exam does not exists for given + usage_key, AlreadyRunningError is raised if the entrance exam + is already being reset. + + This method makes sure the InstructorTask entry is committed. + When called from any view that is wrapped by TransactionMiddleware, + and thus in a "commit-on-success" transaction, an autocommit buried within here + will cause any pending transaction to be committed by a successful + save here. Any future database operations will take place in a + separate transaction. + """ + # check arguments: make sure entrance exam(section) exists for given usage_key + modulestore().get_item(usage_key) + + task_type = 'delete_problem_state' + task_class = delete_problem_state + task_input, task_key = encode_entrance_exam_and_student_input(usage_key, student) + return submit_task(request, task_type, task_class, usage_key.course_key, task_input, task_key) + + def submit_bulk_course_email(request, course_key, email_id): """ Request to have bulk email sent as a background task. diff --git a/lms/djangoapps/instructor_task/api_helper.py b/lms/djangoapps/instructor_task/api_helper.py index 344ef2dc43..441703c851 100644 --- a/lms/djangoapps/instructor_task/api_helper.py +++ b/lms/djangoapps/instructor_task/api_helper.py @@ -8,10 +8,13 @@ import hashlib import json import logging +from django.utils.translation import ugettext as _ + from celery.result import AsyncResult from celery.states import READY_STATES, SUCCESS, FAILURE, REVOKED from courseware.module_render import get_xqueue_callback_url_prefix +from courseware.courses import get_problems_in_section from xmodule.modulestore.django import modulestore from opaque_keys.edx.keys import UsageKey @@ -253,6 +256,22 @@ def check_arguments_for_rescoring(usage_key): raise NotImplementedError(msg) +def check_entrance_exam_problems_for_rescoring(exam_key): # pylint: disable=invalid-name + """ + Grabs all problem descriptors in exam and checks each descriptor to + confirm that it supports re-scoring. + + An ItemNotFoundException is raised if the corresponding module + descriptor doesn't exist for exam_key. NotImplementedError is raised if + any of the problem in entrance exam doesn't support re-scoring calls. + """ + problems = get_problems_in_section(exam_key).values() + if any(not hasattr(problem, 'module_class') or not hasattr(problem.module_class, 'rescore_problem') + for problem in problems): + msg = _("Not all problems in entrance exam support re-scoring.") + raise NotImplementedError(msg) + + def encode_problem_and_student_input(usage_key, student=None): # pylint: disable=invalid-name """ Encode optional usage_key and optional student into task_key and task_input values. @@ -276,6 +295,28 @@ def encode_problem_and_student_input(usage_key, student=None): # pylint: disabl return task_input, task_key +def encode_entrance_exam_and_student_input(usage_key, student=None): # pylint: disable=invalid-name + """ + Encode usage_key and optional student into task_key and task_input values. + + Args: + usage_key (Location): The usage_key identifying the entrance exam. + student (User): the student affected + """ + assert isinstance(usage_key, UsageKey) + if student is not None: + task_input = {'entrance_exam_url': unicode(usage_key), 'student': student.username} + task_key_stub = "{student}_{entranceexam}".format(student=student.id, entranceexam=unicode(usage_key)) + else: + task_input = {'entrance_exam_url': unicode(usage_key)} + task_key_stub = "_{entranceexam}".format(entranceexam=unicode(usage_key)) + + # create the key value by using MD5 hash: + task_key = hashlib.md5(task_key_stub).hexdigest() + + return task_input, task_key + + def submit_task(request, task_type, task_class, course_key, task_input, task_key): """ Helper method to submit a task. diff --git a/lms/djangoapps/instructor_task/subtasks.py b/lms/djangoapps/instructor_task/subtasks.py index 483e3591e0..f863dfc598 100644 --- a/lms/djangoapps/instructor_task/subtasks.py +++ b/lms/djangoapps/instructor_task/subtasks.py @@ -71,7 +71,7 @@ def track_memory_usage(metric, course_id): def _generate_items_for_subtask( - item_querysets, + item_querysets, # pylint: disable=bad-continuation item_fields, total_num_items, items_per_task, @@ -166,7 +166,7 @@ class SubtaskStatus(object): self.state = state if state is not None else QUEUING @classmethod - def from_dict(self, d): + def from_dict(cls, d): """Construct a SubtaskStatus object from a dict representation.""" options = dict(d) task_id = options['task_id'] @@ -174,9 +174,9 @@ class SubtaskStatus(object): return SubtaskStatus.create(task_id, **options) @classmethod - def create(self, task_id, **options): + def create(cls, task_id, **options): """Construct a SubtaskStatus object.""" - return self(task_id, **options) + return cls(task_id, **options) def to_dict(self): """ diff --git a/lms/djangoapps/instructor_task/tasks_helper.py b/lms/djangoapps/instructor_task/tasks_helper.py index e6b0b62c4d..cf2ae7d142 100644 --- a/lms/djangoapps/instructor_task/tasks_helper.py +++ b/lms/djangoapps/instructor_task/tasks_helper.py @@ -22,7 +22,7 @@ from util.file import course_filename_prefix_generator, UniversalNewlineIterator from xmodule.modulestore.django import modulestore from xmodule.split_test_module import get_split_user_partitions -from courseware.courses import get_course_by_id +from courseware.courses import get_course_by_id, get_problems_in_section from courseware.grades import iterate_grades_for from courseware.models import StudentModule from courseware.model_data import FieldDataCache @@ -33,6 +33,7 @@ from instructor_task.models import ReportStore, InstructorTask, PROGRESS from lms.djangoapps.lms_xblock.runtime import LmsPartitionService from openedx.core.djangoapps.course_groups.cohorts import get_cohort from openedx.core.djangoapps.course_groups.models import CourseUserGroup +from opaque_keys.edx.keys import UsageKey from openedx.core.djangoapps.course_groups.cohorts import add_user_to_cohort from student.models import CourseEnrollment @@ -296,14 +297,28 @@ def perform_module_state_update(update_fcn, filter_fcn, _entry_id, course_id, ta """ start_time = time() - usage_key = course_id.make_usage_key_from_deprecated_string(task_input.get('problem_url')) + usage_keys = [] + problem_url = task_input.get('problem_url') + entrance_exam_url = task_input.get('entrance_exam_url') student_identifier = task_input.get('student') + problems = {} - # find the problem descriptor: - module_descriptor = modulestore().get_item(usage_key) + # if problem_url is present make a usage key from it + if problem_url: + usage_key = course_id.make_usage_key_from_deprecated_string(problem_url) + usage_keys.append(usage_key) - # find the module in question - modules_to_update = StudentModule.objects.filter(course_id=course_id, module_state_key=usage_key) + # find the problem descriptor: + problem_descriptor = modulestore().get_item(usage_key) + problems[unicode(usage_key)] = problem_descriptor + + # if entrance_exam is present grab all problems in it + if entrance_exam_url: + problems = get_problems_in_section(entrance_exam_url) + usage_keys = [UsageKey.from_string(location) for location in problems.keys()] + + # find the modules in question + modules_to_update = StudentModule.objects.filter(course_id=course_id, module_state_key__in=usage_keys) # give the option of updating an individual student. If not specified, # then updates all students who have responded to a problem so far @@ -327,6 +342,7 @@ def perform_module_state_update(update_fcn, filter_fcn, _entry_id, course_id, ta for module_to_update in modules_to_update: task_progress.attempted += 1 + module_descriptor = problems[unicode(module_to_update.module_state_key)] # There is no try here: if there's an error, we let it throw, and the task will # be marked as FAILED, with a stack trace. with dog_stats_api.timer('instructor_tasks.module.time.step', tags=[u'action:{name}'.format(name=action_name)]): diff --git a/lms/djangoapps/licenses/management/commands/generate_serial_numbers.py b/lms/djangoapps/licenses/management/commands/generate_serial_numbers.py index 9774427b9c..7e935a831c 100644 --- a/lms/djangoapps/licenses/management/commands/generate_serial_numbers.py +++ b/lms/djangoapps/licenses/management/commands/generate_serial_numbers.py @@ -24,8 +24,6 @@ class Command(BaseCommand): args = "course_id software_id count" def handle(self, *args, **options): - """ - """ course_id, software_name, count = self._parse_arguments(args) software, _ = CourseSoftware.objects.get_or_create(course_id=course_id, diff --git a/lms/djangoapps/licenses/management/commands/import_serial_numbers.py b/lms/djangoapps/licenses/management/commands/import_serial_numbers.py index ed9ce03ca2..fbb93d3a28 100644 --- a/lms/djangoapps/licenses/management/commands/import_serial_numbers.py +++ b/lms/djangoapps/licenses/management/commands/import_serial_numbers.py @@ -24,8 +24,6 @@ class Command(BaseCommand): args = "course_id software_id serial_file" def handle(self, *args, **options): - """ - """ course_id, software_name, filename = self._parse_arguments(args) software, _ = CourseSoftware.objects.get_or_create(course_id=course_id, diff --git a/lms/djangoapps/lms_xblock/runtime.py b/lms/djangoapps/lms_xblock/runtime.py index 7b5c3fe7b9..af0c32f14c 100644 --- a/lms/djangoapps/lms_xblock/runtime.py +++ b/lms/djangoapps/lms_xblock/runtime.py @@ -5,6 +5,7 @@ Module implementing `xblock.runtime.Runtime` functionality for the LMS import re import xblock.reference.plugins +from django.conf import settings from django.core.urlresolvers import reverse from django.conf import settings from lms.djangoapps.lms_xblock.models import XBlockAsidesConfig @@ -118,10 +119,11 @@ class LmsHandlerUrls(object): """ local_resource_url for Studio """ - return reverse('xblock_resource_url', kwargs={ + path = reverse('xblock_resource_url', kwargs={ 'block_type': block.scope_ids.block_type, 'uri': uri, }) + return '//{}{}'.format(settings.SITE_NAME, path) class LmsPartitionService(PartitionService): diff --git a/lms/djangoapps/mobile_api/utils.py b/lms/djangoapps/mobile_api/utils.py index cd7720f8a3..7cb71702cd 100644 --- a/lms/djangoapps/mobile_api/utils.py +++ b/lms/djangoapps/mobile_api/utils.py @@ -4,10 +4,9 @@ Common utility methods and decorators for Mobile APIs. import functools - from rest_framework import permissions -from rest_framework.authentication import OAuth2Authentication, SessionAuthentication +from util.authentication import SessionAuthenticationAllowInactiveUser, OAuth2AuthenticationAllowInactiveUser from opaque_keys.edx.keys import CourseKey from xmodule.modulestore.django import modulestore from courseware.courses import get_course_with_access @@ -55,7 +54,10 @@ def mobile_view(is_user=False): Requires either OAuth2 or Session-based authentication. If is_user is True, also requires username in URL matches the request user. """ - func_or_class.authentication_classes = (OAuth2Authentication, SessionAuthentication) + func_or_class.authentication_classes = ( + OAuth2AuthenticationAllowInactiveUser, + SessionAuthenticationAllowInactiveUser + ) func_or_class.permission_classes = (permissions.IsAuthenticated,) if is_user: func_or_class.permission_classes += (IsUser,) diff --git a/lms/djangoapps/notes/api.py b/lms/djangoapps/notes/api.py index 657e97f92e..44abb99e20 100644 --- a/lms/djangoapps/notes/api.py +++ b/lms/djangoapps/notes/api.py @@ -148,7 +148,7 @@ def create(request, course_key): return ApiResponse(http_response=response, data=None) -def read(request, course_key, note_id): # pylint: disable=unused-argument (course_key) +def read(request, _course_key, note_id): ''' Returns a single annotation object. ''' @@ -163,7 +163,7 @@ def read(request, course_key, note_id): # pylint: disable=unused-argument (cour return ApiResponse(http_response=HttpResponse(), data=note.as_dict()) -def update(request, course_key, note_id): # pylint: disable=unused-argument (course_key) +def update(request, course_key, note_id): # pylint: disable=unused-argument ''' Updates an annotation object and returns a 303 with the read location. ''' @@ -247,7 +247,7 @@ def search(request, course_key): return ApiResponse(http_response=HttpResponse(), data=result) -def root(request, course_key): # pylint: disable=unused-argument (course_key, request) +def root(request, course_key): # pylint: disable=unused-argument ''' Returns version information about the API. ''' diff --git a/lms/djangoapps/notification_prefs/views.py b/lms/djangoapps/notification_prefs/views.py index 3cada57beb..af9e62c5d5 100644 --- a/lms/djangoapps/notification_prefs/views.py +++ b/lms/djangoapps/notification_prefs/views.py @@ -90,6 +90,31 @@ class UsernameCipher(object): return UsernameCipher._remove_padding(decrypted) +def enable_notifications(user): + """ + Enable notifications for a user. + Currently only used for daily forum digests. + """ + UserPreference.objects.get_or_create( + user=user, + key=NOTIFICATION_PREF_KEY, + defaults={ + "value": UsernameCipher.encrypt(user.username) + } + ) + + +def disable_notifications(user): + """ + Disable notifications for a user. + Currently only used for daily forum digests. + """ + UserPreference.objects.filter( + user=user, + key=NOTIFICATION_PREF_KEY + ).delete() + + @require_POST def ajax_enable(request): """ @@ -103,13 +128,7 @@ def ajax_enable(request): if not request.user.is_authenticated(): raise PermissionDenied - UserPreference.objects.get_or_create( - user=request.user, - key=NOTIFICATION_PREF_KEY, - defaults={ - "value": UsernameCipher.encrypt(request.user.username) - } - ) + enable_notifications(request.user) return HttpResponse(status=204) @@ -125,10 +144,7 @@ def ajax_disable(request): if not request.user.is_authenticated(): raise PermissionDenied - UserPreference.objects.filter( - user=request.user, - key=NOTIFICATION_PREF_KEY - ).delete() + disable_notifications(request.user) return HttpResponse(status=204) diff --git a/lms/djangoapps/shoppingcart/models.py b/lms/djangoapps/shoppingcart/models.py index cd50e8f970..8b0c1c7268 100644 --- a/lms/djangoapps/shoppingcart/models.py +++ b/lms/djangoapps/shoppingcart/models.py @@ -1930,7 +1930,7 @@ class Donation(OrderItem): ).format(platform_name=settings.PLATFORM_NAME) @classmethod - def _line_item_description(self, course_id=None): + def _line_item_description(cls, course_id=None): """Create a line-item description for the donation. Includes the course display name if provided. diff --git a/lms/djangoapps/student_account/test/test_views.py b/lms/djangoapps/student_account/test/test_views.py index 035a8a7856..c9a708a6c7 100644 --- a/lms/djangoapps/student_account/test/test_views.py +++ b/lms/djangoapps/student_account/test/test_views.py @@ -408,6 +408,26 @@ class StudentAccountLoginAndRegistrationTest(UrlResetMixin, ModuleStoreTestCase) response = self.client.get(reverse(url_name)) self.assertRedirects(response, reverse("dashboard")) + @ddt.data( + (False, "account_login"), + (False, "account_login"), + (True, "account_login"), + (True, "account_register"), + ) + @ddt.unpack + def test_login_and_registration_form_signin_preserves_params(self, is_edx_domain, url_name): + params = { + 'enrollment_action': 'enroll', + 'course_id': 'edX/DemoX/Demo_Course' + } + + with mock.patch.dict(settings.FEATURES, {'IS_EDX_DOMAIN': is_edx_domain}): + response = self.client.get(reverse(url_name), params) + + # The response should have a "Sign In" button with the URL + # that preserves the querystring params + self.assertContains(response, "login?course_id=edX%2FDemoX%2FDemo_Course&enrollment_action=enroll") + @mock.patch.dict(settings.FEATURES, {"ENABLE_THIRD_PARTY_AUTH": False}) @ddt.data("account_login", "account_register") def test_third_party_auth_disabled(self, url_name): diff --git a/lms/djangoapps/student_account/views.py b/lms/djangoapps/student_account/views.py index 29afd4ab2d..36d5aa7209 100644 --- a/lms/djangoapps/student_account/views.py +++ b/lms/djangoapps/student_account/views.py @@ -114,6 +114,11 @@ def login_and_registration_form(request, initial_mode="login"): 'login_form_desc': form_descriptions['login'], 'registration_form_desc': form_descriptions['registration'], 'password_reset_form_desc': form_descriptions['password_reset'], + + # We need to pass these parameters so that the header's + # "Sign In" button preserves the querystring params. + 'enrollment_action': request.GET.get('enrollment_action'), + 'course_id': request.GET.get('course_id') } return render_to_response('student_account/login_and_register.html', context) diff --git a/lms/djangoapps/survey/admin.py b/lms/djangoapps/survey/admin.py index 26b0cfd71b..07431e6d56 100644 --- a/lms/djangoapps/survey/admin.py +++ b/lms/djangoapps/survey/admin.py @@ -7,7 +7,7 @@ from django.contrib import admin from survey.models import SurveyForm -class SurveyFormAdminForm(forms.ModelForm): # pylint: disable=incomplete-protocol +class SurveyFormAdminForm(forms.ModelForm): """Form providing validation of SurveyForm content.""" class Meta: # pylint: disable=missing-docstring diff --git a/lms/envs/aws.py b/lms/envs/aws.py index 72c26b34fb..47ecffba6d 100644 --- a/lms/envs/aws.py +++ b/lms/envs/aws.py @@ -151,6 +151,7 @@ SITE_NAME = ENV_TOKENS['SITE_NAME'] HTTPS = ENV_TOKENS.get('HTTPS', HTTPS) SESSION_ENGINE = ENV_TOKENS.get('SESSION_ENGINE', SESSION_ENGINE) SESSION_COOKIE_DOMAIN = ENV_TOKENS.get('SESSION_COOKIE_DOMAIN') +SESSION_COOKIE_HTTPONLY = ENV_TOKENS.get('SESSION_COOKIE_HTTPONLY', True) REGISTRATION_EXTRA_FIELDS = ENV_TOKENS.get('REGISTRATION_EXTRA_FIELDS', REGISTRATION_EXTRA_FIELDS) SESSION_COOKIE_SECURE = ENV_TOKENS.get('SESSION_COOKIE_SECURE', SESSION_COOKIE_SECURE) @@ -302,6 +303,17 @@ if FEATURES.get('AUTH_USE_CAS'): # Example: {'CN': 'http://api.xuetangx.com/edx/video?s3_url='} VIDEO_CDN_URL = ENV_TOKENS.get('VIDEO_CDN_URL', {}) +############# CORS headers for cross-domain requests ################# + +if FEATURES.get('ENABLE_CORS_HEADERS'): + INSTALLED_APPS += ('corsheaders', 'cors_csrf') + MIDDLEWARE_CLASSES = ( + 'corsheaders.middleware.CorsMiddleware', + 'cors_csrf.middleware.CorsCSRFMiddleware', + ) + MIDDLEWARE_CLASSES + CORS_ALLOW_CREDENTIALS = True + CORS_ORIGIN_WHITELIST = ENV_TOKENS.get('CORS_ORIGIN_WHITELIST', ()) + ############################## SECURE AUTH ITEMS ############### # Secret things: passwords, access keys, etc. diff --git a/lms/envs/bok_choy.env.json b/lms/envs/bok_choy.env.json index 7f60988d85..89223675c7 100644 --- a/lms/envs/bok_choy.env.json +++ b/lms/envs/bok_choy.env.json @@ -104,7 +104,7 @@ "SEGMENT_IO_LMS": true, "SERVER_EMAIL": "devops@example.com", "SESSION_COOKIE_DOMAIN": null, - "SITE_NAME": "localhost", + "SITE_NAME": "localhost:8003", "STATIC_ROOT_BASE": "** OVERRIDDEN **", "STATIC_URL_BASE": "/static/", "SYSLOG_SERVER": "", diff --git a/lms/envs/common.py b/lms/envs/common.py index df132589b2..d0365412f7 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -103,6 +103,13 @@ FEATURES = { # this should remain off in production until digest notifications are online. 'ENABLE_DISCUSSION_HOME_PANEL': False, + # Set this to True if you want the discussion digest emails enabled automatically for new users. + # This will be set on all new account registrations. + # It is not recommended to enable this feature if ENABLE_DISCUSSION_HOME_PANEL is not enabled, since + # subscribers who receive digests in that case will only be able to unsubscribe via links embedded + # in their emails, and they will have no way to resubscribe. + 'ENABLE_DISCUSSION_EMAIL_DIGEST': False, + 'ENABLE_PSYCHOMETRICS': False, # real-time psychometrics (eg item response theory analysis in instructor dashboard) 'ENABLE_DJANGO_ADMIN_SITE': True, # set true to enable django's admin site, even on prod (e.g. for course ops) @@ -133,6 +140,13 @@ FEATURES = { # Toggles OAuth2 authentication provider 'ENABLE_OAUTH2_PROVIDER': False, + # Allows to enable an API endpoint to serve XBlock view, used for example by external applications. + # See jquey-xblock: https://github.com/edx-solutions/jquery-xblock + 'ENABLE_XBLOCK_VIEW_ENDPOINT': False, + + # Allows to configure the LMS to provide CORS headers to serve requests from other domains + 'ENABLE_CORS_HEADERS': False, + # Can be turned off if course lists need to be hidden. Effects views and templates. 'COURSES_ARE_BROWSABLE': True, @@ -285,10 +299,6 @@ FEATURES = { # Turn on Advanced Security by default 'ADVANCED_SECURITY': True, - # Show a "Download your certificate" on the Progress page if the lowest - # nonzero grade cutoff is met - 'SHOW_PROGRESS_SUCCESS_BUTTON': False, - # When a logged in user goes to the homepage ('/') should the user be # redirected to the dashboard - this is default Open edX behavior. Set to # False to not redirect the user @@ -1134,6 +1144,7 @@ verify_student_js = [ 'js/src/string_utils.js', 'js/verify_student/models/verification_model.js', 'js/verify_student/views/error_view.js', + 'js/verify_student/views/image_input_view.js', 'js/verify_student/views/webcam_photo_view.js', 'js/verify_student/views/step_view.js', 'js/verify_student/views/intro_step_view.js', @@ -1679,6 +1690,16 @@ if FEATURES.get('AUTH_USE_CAS'): INSTALLED_APPS += ('django_cas',) MIDDLEWARE_CLASSES += ('django_cas.middleware.CASMiddleware',) +############# CORS headers for cross-domain requests ################# + +if FEATURES.get('ENABLE_CORS_HEADERS'): + INSTALLED_APPS += ('corsheaders', 'cors_csrf') + MIDDLEWARE_CLASSES = ( + 'corsheaders.middleware.CorsMiddleware', + 'cors_csrf.middleware.CorsCSRFMiddleware', + ) + MIDDLEWARE_CLASSES + CORS_ALLOW_CREDENTIALS = True + CORS_ORIGIN_WHITELIST = () ###################### Registration ################################## @@ -1712,10 +1733,6 @@ GRADES_DOWNLOAD = { 'ROOT_PATH': '/tmp/edx-s3/grades', } -######################## PROGRESS SUCCESS BUTTON ############################## -# The following fields are available in the URL: {course_id} {student_id} -PROGRESS_SUCCESS_BUTTON_URL = 'http:////{course_id}' -PROGRESS_SUCCESS_BUTTON_TEXT_OVERRIDE = None #### PASSWORD POLICY SETTINGS ##### PASSWORD_MIN_LENGTH = 8 diff --git a/lms/envs/devstack.py b/lms/envs/devstack.py index 4e067f0bc4..2b1f2e5730 100644 --- a/lms/envs/devstack.py +++ b/lms/envs/devstack.py @@ -45,8 +45,12 @@ ANALYTICS_DASHBOARD_URL = None ################################ DEBUG TOOLBAR ################################ INSTALLED_APPS += ('debug_toolbar', 'debug_toolbar_mongo') -MIDDLEWARE_CLASSES += ('django_comment_client.utils.QueryCountDebugMiddleware', - 'debug_toolbar.middleware.DebugToolbarMiddleware',) +MIDDLEWARE_CLASSES = ( + ( + 'django_comment_client.utils.QueryCountDebugMiddleware', + 'debug_toolbar.middleware.DebugToolbarMiddleware', + ) + MIDDLEWARE_CLASSES +) INTERNAL_IPS = ('127.0.0.1',) DEBUG_TOOLBAR_PANELS = ( diff --git a/lms/envs/test.py b/lms/envs/test.py index 43f52dc4ea..e08f7e9bbe 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -377,7 +377,7 @@ FEATURES['CLASS_DASHBOARD'] = True # Generated checkid_setup request to http://testserver/openid/provider/login/ with assocication {HMAC-SHA1}{51d49995}{s/kRmA==} import openid.oidutil -openid.oidutil.log = lambda message, level = 0: None +openid.oidutil.log = lambda message, level=0: None PLATFORM_NAME = "edX" SITE_NAME = "edx.org" diff --git a/lms/static/coffee/fixtures/calculator.html b/lms/static/coffee/fixtures/calculator.html index 638dcc0b1f..5398c7a776 100644 --- a/lms/static/coffee/fixtures/calculator.html +++ b/lms/static/coffee/fixtures/calculator.html @@ -8,6 +8,14 @@
Hints diff --git a/lms/static/coffee/spec/calculator_spec.coffee b/lms/static/coffee/spec/calculator_spec.coffee index ed10bb26a6..8b70262b9b 100644 --- a/lms/static/coffee/spec/calculator_spec.coffee +++ b/lms/static/coffee/spec/calculator_spec.coffee @@ -19,16 +19,12 @@ describe 'Calculator', -> it 'bind the calculator button', -> expect($('.calc')).toHandleWith 'click', @calculator.toggle - it 'bind the help button', -> - # These events are bind by $.hover() - expect($('#calculator_hint')).toHandle 'mouseover' - expect($('#calculator_hint')).toHandle 'mouseout' - expect($('#calculator_hint')).toHandle 'keydown' + it 'bind key up on calculator', -> + expect($('#calculator_wrapper')).toHandle 'keyup', @calculator.handleKeyUpOnHint - it 'prevent default behavior on help button', -> - $('#calculator_hint').click (e) -> - expect(e.isDefaultPrevented()).toBeTruthy() - $('#calculator_hint').click() + it 'bind the help button', -> + # This events is bind by $.click() + expect($('#calculator_hint')).toHandle 'click' it 'bind the calculator submit', -> expect($('form#calculator')).toHandleWith 'submit', @calculator.calculate @@ -75,6 +71,12 @@ describe 'Calculator', -> expect($('.help')).not.toHaveClass('shown') expect($('.help')).toHaveAttr('aria-hidden', 'true') + describe 'handleClickOnHintButton', -> + it 'on click hint button hint popup becomes visible ', -> + e = jQuery.Event('click'); + $('#calculator_hint').trigger(e); + expect($('.help')).toHaveClass 'shown' + describe 'handleClickOnDocument', -> it 'on click out of the hint popup it becomes hidden', -> @calculator.showHint() @@ -82,6 +84,13 @@ describe 'Calculator', -> $(document).trigger(e); expect($('.help')).not.toHaveClass 'shown' + describe 'handleClickOnHintPopup', -> + it 'on click of hint popup it remains visible', -> + @calculator.showHint() + e = jQuery.Event('click'); + $('#calculator_input_help').trigger(e); + expect($('.help')).toHaveClass 'shown' + describe 'selectHint', -> it 'select correct hint item', -> spyOn($.fn, 'focus') @@ -108,7 +117,7 @@ describe 'Calculator', -> expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(0).attr('id')) - it 'Prev hint item is selected', -> + it 'if this was the second item, select the first one', -> @calculator.activeHint = $('.hint-item').eq(1) @calculator.prevHint() @@ -118,20 +127,32 @@ describe 'Calculator', -> @calculator.activeHint = $('.hint-item').eq(0) @calculator.prevHint() + expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(2).attr('id')) + + it 'if this was the last item, select the second last', -> + @calculator.activeHint = $('.hint-item').eq(2) + @calculator.prevHint() + expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(1).attr('id')) describe 'nextHint', -> - it 'Next hint item is selected', -> + it 'if this was the first item, select the second one', -> @calculator.activeHint = $('.hint-item').eq(0) @calculator.nextHint() expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(1).attr('id')) - it 'If this was the last item, select the first one', -> + it 'If this was the second item, select the last one', -> @calculator.activeHint = $('.hint-item').eq(1) @calculator.nextHint() + expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(2).attr('id')) + + it 'If this was the last item, select the first one', -> + @calculator.activeHint = $('.hint-item').eq(2) + @calculator.nextHint() + expect(@calculator.activeHint.attr('id')).toBe($('.hint-item').eq(0).attr('id')) describe 'handleKeyDown', -> @@ -264,14 +285,6 @@ describe 'Calculator', -> not_called: 'nextHint': calc - tab: - returnedValue: true - event: - keyCode: KEY.TAB - shiftKey: false - called: - 'hideHint': calc - esc: returnedValue: false event: diff --git a/lms/static/coffee/src/calculator.coffee b/lms/static/coffee/src/calculator.coffee index 60fe3936fd..ce881e08b4 100644 --- a/lms/static/coffee/src/calculator.coffee +++ b/lms/static/coffee/src/calculator.coffee @@ -22,16 +22,17 @@ class @Calculator $('form#calculator').submit(@calculate).submit (e) -> e.preventDefault() @hintButton - .hover( - $.proxy(@showHint, @), - $.proxy(@hideHint, @) - ) - .keydown($.proxy(@handleKeyDown, @)) - .click (e) -> e.preventDefault() + .click(($.proxy(@handleClickOnHintButton, @))) + + @hintPopup + .click(($.proxy(@handleClickOnHintPopup, @))) @hintPopup .keydown($.proxy(@handleKeyDownOnHint, @)) + $('#calculator_wrapper') + .keyup($.proxy(@handleKeyUpOnHint, @)) + @handleClickOnDocument = $.proxy(@handleClickOnDocument, @) KEY: @@ -140,9 +141,6 @@ class @Calculator return true switch e.keyCode - when @KEY.TAB - # hide popup with hints - @hideHint() when @KEY.ESC # hide popup with hints @@ -175,11 +173,27 @@ class @Calculator # allow the event to propagate return true + handleKeyUpOnHint: (e) -> + switch e.keyCode + when @KEY.TAB + # move focus to hint links and hide hint once focus is out of hint pop up + @active_element = document.activeElement + if not $(@active_element).parents().is(@hintPopup) + @hideHint() + handleClickOnDocument: (e) -> @hideHint() - # allow the event to propagate - return true; + handleClickOnHintButton: (e) -> + e.stopPropagation() + if @hintPopup.hasClass 'shown' + @hideHint() + else + @showHint() + @activeHint.focus() + + handleClickOnHintPopup: (e) -> + e.stopPropagation() calculate: -> $.getWithPrefix '/calculate', { equation: $('#calculator_input').val() }, (data) -> diff --git a/lms/static/coffee/src/instructor_dashboard/student_admin.coffee b/lms/static/coffee/src/instructor_dashboard/student_admin.coffee index 3f9e9d9589..c3a7cb4e68 100644 --- a/lms/static/coffee/src/instructor_dashboard/student_admin.coffee +++ b/lms/static/coffee/src/instructor_dashboard/student_admin.coffee @@ -22,7 +22,7 @@ find_and_assert = ($root, selector) -> item -class StudentAdmin +class @StudentAdmin constructor: (@$section) -> # attach self to html so that instructor_dashboard.coffee can find # this object to call event handlers like 'onClickTitle' @@ -41,6 +41,14 @@ class StudentAdmin @$btn_task_history_single = @$section.find "input[name='task-history-single']" @$table_task_history_single = @$section.find ".task-history-single-table" + # entrance-exam-specific + @$field_entrance_exam_student_select_grade = @$section.find "input[name='entrance-exam-student-select-grade']" + @$btn_reset_entrance_exam_attempts = @$section.find "input[name='reset-entrance-exam-attempts']" + @$btn_delete_entrance_exam_state = @$section.find "input[name='delete-entrance-exam-state']" + @$btn_rescore_entrance_exam = @$section.find "input[name='rescore-entrance-exam']" + @$btn_entrance_exam_task_history = @$section.find "input[name='entrance-exam-task-history']" + @$table_entrance_exam_task_history = @$section.find ".entrance-exam-task-history-table" + # course-specific @$field_problem_select_all = @$section.find "input[name='problem-select-all']" @$btn_reset_attempts_all = @$section.find "input[name='reset-attempts-all']" @@ -52,6 +60,7 @@ class StudentAdmin # response areas @$request_response_error_progress = find_and_assert @$section, ".student-specific-container .request-response-error" @$request_response_error_grade = find_and_assert @$section, ".student-grade-container .request-response-error" + @$request_response_error_ee = @$section.find ".entrance-exam-grade-container .request-response-error" @$request_response_error_all = @$section.find ".course-specific-container .request-response-error" # attach click handlers @@ -171,6 +180,90 @@ class StudentAdmin create_task_list_table @$table_task_history_single, data.tasks error: std_ajax_err => @$request_response_error_grade.text full_error_message + # reset entrance exam attempts for student + @$btn_reset_entrance_exam_attempts.click => + unique_student_identifier = @$field_entrance_exam_student_select_grade.val() + if not unique_student_identifier + return @$request_response_error_ee.text gettext("Please enter a student email address or username.") + send_data = + unique_student_identifier: unique_student_identifier + delete_module: false + + $.ajax + dataType: 'json' + url: @$btn_reset_entrance_exam_attempts.data 'endpoint' + data: send_data + success: @clear_errors_then -> + success_message = gettext("Entrance exam attempts is being reset for student '{student_id}'.") + full_success_message = interpolate_text(success_message, {student_id: unique_student_identifier}) + alert full_success_message + error: std_ajax_err => + error_message = gettext("Error resetting entrance exam attempts for student '{student_id}'. Make sure student identifier is correct.") + full_error_message = interpolate_text(error_message, {student_id: unique_student_identifier}) + @$request_response_error_ee.text full_error_message + + # start task to rescore entrance exam for student + @$btn_rescore_entrance_exam.click => + unique_student_identifier = @$field_entrance_exam_student_select_grade.val() + if not unique_student_identifier + return @$request_response_error_ee.text gettext("Please enter a student email address or username.") + send_data = + unique_student_identifier: unique_student_identifier + + $.ajax + dataType: 'json' + url: @$btn_rescore_entrance_exam.data 'endpoint' + data: send_data + success: @clear_errors_then -> + success_message = gettext("Started entrance exam rescore task for student '{student_id}'. Click the 'Show Background Task History for Student' button to see the status of the task.") + full_success_message = interpolate_text(success_message, {student_id: unique_student_identifier}) + alert full_success_message + error: std_ajax_err => + error_message = gettext("Error starting a task to rescore entrance exam for student '{student_id}'. Make sure that entrance exam has problems in it and student identifier is correct.") + full_error_message = interpolate_text(error_message, {student_id: unique_student_identifier}) + @$request_response_error_ee.text full_error_message + + # delete student state for entrance exam + @$btn_delete_entrance_exam_state.click => + unique_student_identifier = @$field_entrance_exam_student_select_grade.val() + if not unique_student_identifier + return @$request_response_error_ee.text gettext("Please enter a student email address or username.") + send_data = + unique_student_identifier: unique_student_identifier + delete_module: true + + $.ajax + dataType: 'json' + url: @$btn_delete_entrance_exam_state.data 'endpoint' + data: send_data + success: @clear_errors_then -> + success_message = gettext("Entrance exam state is being deleted for student '{student_id}'.") + full_success_message = interpolate_text(success_message, {student_id: unique_student_identifier}) + alert full_success_message + error: std_ajax_err => + error_message = gettext("Error deleting entrance exam state for student '{student_id}'. Make sure student identifier is correct.") + full_error_message = interpolate_text(error_message, {student_id: unique_student_identifier}) + @$request_response_error_ee.text full_error_message + + # list entrance exam task history for student + @$btn_entrance_exam_task_history.click => + unique_student_identifier = @$field_entrance_exam_student_select_grade.val() + if not unique_student_identifier + return @$request_response_error_ee.text gettext("Please enter a student email address or username.") + send_data = + unique_student_identifier: unique_student_identifier + + $.ajax + dataType: 'json' + url: @$btn_entrance_exam_task_history.data 'endpoint' + data: send_data + success: @clear_errors_then (data) => + create_task_list_table @$table_entrance_exam_task_history, data.tasks + error: std_ajax_err => + error_message = gettext("Error getting entrance exam task history for student '{student_id}'. Make sure student identifier is correct.") + full_error_message = interpolate_text(error_message, {student_id: unique_student_identifier}) + @$request_response_error_ee.text full_error_message + # start task to reset attempts on problem for all students @$btn_reset_attempts_all.click => problem_to_reset = @$field_problem_select_all.val() @@ -243,6 +336,7 @@ class StudentAdmin clear_errors_then: (cb) -> @$request_response_error_progress.empty() @$request_response_error_grade.empty() + @$request_response_error_ee.empty() @$request_response_error_all.empty() -> cb?.apply this, arguments @@ -251,6 +345,7 @@ class StudentAdmin clear_errors: -> @$request_response_error_progress.empty() @$request_response_error_grade.empty() + @$request_response_error_ee.empty() @$request_response_error_all.empty() # handler for when the section title is clicked. diff --git a/lms/static/coffee/src/instructor_dashboard/util.coffee b/lms/static/coffee/src/instructor_dashboard/util.coffee index eb6a81c51c..ae6e6e85a7 100644 --- a/lms/static/coffee/src/instructor_dashboard/util.coffee +++ b/lms/static/coffee/src/instructor_dashboard/util.coffee @@ -19,7 +19,7 @@ find_and_assert = ($root, selector) -> # # wraps a `handler` function so that first # it prints basic error information to the console. -std_ajax_err = (handler) -> (jqXHR, textStatus, errorThrown) -> +@std_ajax_err = (handler) -> (jqXHR, textStatus, errorThrown) -> console.warn """ajax error textStatus: #{textStatus} errorThrown: #{errorThrown}""" @@ -29,7 +29,7 @@ std_ajax_err = (handler) -> (jqXHR, textStatus, errorThrown) -> # render a task list table to the DOM # `$table_tasks` the $element in which to put the table # `tasks_data` -create_task_list_table = ($table_tasks, tasks_data) -> +@create_task_list_table = ($table_tasks, tasks_data) -> $table_tasks.empty() options = @@ -264,7 +264,7 @@ class IntervalManager @intervalID = null -class PendingInstructorTasks +class @PendingInstructorTasks ### Pending Instructor Tasks Section #### constructor: (@$section) -> # Currently running tasks diff --git a/lms/static/images/linkedin_add_to_profile.png b/lms/static/images/linkedin_add_to_profile.png index d72b680f49..22fdb3a4f7 100644 Binary files a/lms/static/images/linkedin_add_to_profile.png and b/lms/static/images/linkedin_add_to_profile.png differ diff --git a/lms/static/js/courseware/certificates_api.js b/lms/static/js/courseware/certificates_api.js new file mode 100644 index 0000000000..3efaaec7c5 --- /dev/null +++ b/lms/static/js/courseware/certificates_api.js @@ -0,0 +1,19 @@ +$(document).ready(function() { + $("#btn_generate_cert").click(function(e){ + e.preventDefault(); + var post_url = $("#btn_generate_cert").data("endpoint"); + $('#btn_generate_cert').prop("disabled", true); + $.ajax({ + type: "POST", + url: post_url, + dataType: 'text', + success: function () { + location.reload(); + }, + error: function(jqXHR, textStatus, errorThrown) { + $('#errors-info').html(jqXHR.responseText); + $('#btn_generate_cert').prop("disabled", false); + } + }); + }); +}); diff --git a/lms/static/js/dashboard/legacy.js b/lms/static/js/dashboard/legacy.js index fb7b6c5565..c0651a6b6d 100644 --- a/lms/static/js/dashboard/legacy.js +++ b/lms/static/js/dashboard/legacy.js @@ -51,6 +51,21 @@ // Track clicks of the "verify now" button. window.analytics.trackLink(verifyButtonLinks, 'edx.bi.user.verification.resumed', generateProperties); + // Track clicks of the LinkedIn "Add to Profile" button + window.analytics.trackLink( + $('.action-linkedin-profile'), + 'edx.bi.user.linkedin_add_to_profile', + function( element ) { + var $el = $( element ); + return { + category: 'linkedin', + label: $el.data('course-id'), + mode: $el.data('certificate-mode') + }; + } + ); + + // Generate the properties object to be passed along with business intelligence events. function generateProperties(element) { var $el = $(element), diff --git a/lms/static/js/edxnotes/plugins/accessibility.js b/lms/static/js/edxnotes/plugins/accessibility.js new file mode 100644 index 0000000000..4044160182 --- /dev/null +++ b/lms/static/js/edxnotes/plugins/accessibility.js @@ -0,0 +1,325 @@ +;(function (define, undefined) { +'use strict'; +define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) { + /** + * Adds the Accessibility Plugin + **/ + Annotator.Plugin.Accessibility = function () { + _.bindAll(this, + 'addAriaAttributes', 'onHighlightKeyDown', 'onViewerKeyDown', + 'onEditorKeyDown', 'addDescriptions', 'removeDescription', + 'focusOnGrabber', 'showViewer', 'onClose', 'focusOnHighlightedText' + ); + // Call the Annotator.Plugin constructor this sets up the element and + // options properties. + Annotator.Plugin.apply(this, arguments); + }; + + $.extend(Annotator.Plugin.Accessibility.prototype, new Annotator.Plugin(), { + pluginInit: function () { + this.annotator.subscribe('annotationViewerTextField', this.addAriaAttributes); + this.annotator.subscribe('annotationsLoaded', this.addDescriptions); + this.annotator.subscribe('annotationCreated', this.addDescriptions); + this.annotator.subscribe('annotationCreated', this.focusOnHighlightedText); + this.annotator.subscribe('annotationDeleted', this.removeDescription); + this.annotator.element.on('keydown.accessibility.hl', '.annotator-hl', this.onHighlightKeyDown); + this.annotator.element.on('keydown.accessibility.viewer', '.annotator-viewer', this.onViewerKeyDown); + this.annotator.element.on('keydown.accessibility.editor', '.annotator-editor', this.onEditorKeyDown); + this.addFocusGrabber(); + this.addTabIndex(); + }, + + destroy: function () { + this.annotator.unsubscribe('annotationViewerTextField', this.addAriaAttributes); + this.annotator.unsubscribe('annotationsLoaded', this.addDescriptions); + this.annotator.unsubscribe('annotationCreated', this.addDescriptions); + this.annotator.unsubscribe('annotationCreated', this.focusOnHighlightedText); + this.annotator.unsubscribe('annotationDeleted', this.removeDescription); + this.annotator.element.off('.accessibility'); + this.removeFocusGrabber(); + }, + + addTabIndex: function () { + this.annotator.element + .find('.annotator-edit, .annotator-delete') + .attr('tabindex', 0); + }, + + addFocusGrabber: function () { + this.focusGrabber = $('', { + 'class': 'sr edx-notes-focus-grabber', + 'tabindex': '-1', + 'text': gettext('Focus grabber') + }); + this.annotator.wrapper.before(this.focusGrabber); + }, + + removeFocusGrabber: function () { + if (this.focusGrabber) { + this.focusGrabber.remove(); + this.focusGrabber = null; + } + }, + + focusOnGrabber: function () { + this.annotator.wrapper.siblings('.edx-notes-focus-grabber').focus(); + }, + + addDescriptions: function (annotations) { + if (!_.isArray(annotations)) { + annotations = [annotations]; + } + + _.each(annotations, function (annotation) { + var id = annotation.id || _.uniqueId(); + + this.annotator.wrapper.after($('
', { + 'class': 'aria-note-description sr', + 'id': 'aria-note-description-' + id, + 'text': Annotator.Util.escape(annotation.text) + })); + + $(annotation.highlights).attr({ + 'aria-describedby': 'aria-note-description-' + id + }); + }, this); + }, + + removeDescription: function (annotation) { + var id = $(annotation.highlights).attr('aria-describedby'); + $('#' + id).remove(); + }, + + addAriaAttributes: function (field, annotation) { + // Add ARIA attributes to associated note ie
My note
+ $(field).attr({ + 'tabindex': -1, + 'role': 'note', + 'class': 'annotator-note' + }); + }, + + focusOnHighlightedText: function () { + var viewer = this.annotator.viewer, + editor = this.annotator.editor, + highlight; + + try { + if (viewer.isShown()) { + highlight = viewer.annotations[0].highlights[0]; + } else if (editor.isShown()) { + highlight = editor.annotation.highlights[0]; + } + highlight.focus(); + } catch (err) {} + }, + + getViewerTabControls: function () { + var viewer, note, viewerControls, editButton, delButton, closeButton, tabControls = []; + + // Viewer elements + viewer = this.annotator.element.find('.annotator-viewer'); + note = viewer.find('.annotator-note'); + viewerControls = viewer.find('.annotator-controls'); + editButton = viewerControls.find('.annotator-edit'); + delButton = viewerControls.find('.annotator-delete'); + closeButton = viewerControls.find('.annotator-close'); + + tabControls.push(note, editButton, delButton, closeButton); + + return tabControls; + }, + + getEditorTabControls: function () { + var editor, editorControls, textArea, saveButton, cancelButton, tabControls = []; + + // Editor elements + editor = this.annotator.element.find('.annotator-editor'); + editorControls = editor.find('.annotator-controls'); + textArea = editor.find('.annotator-listing') + .find('.annotator-item') + .first() + .children('textarea'); + saveButton = editorControls.find('.annotator-save'); + cancelButton = editorControls.find('.annotator-cancel'); + + tabControls.push(textArea, saveButton, cancelButton); + + return tabControls; + }, + + focusOnNextTabControl: function (tabControls, tabControl) { + var nextIndex; + + _.each(tabControls, function (element, index) { + if (element.is(tabControl)) { + nextIndex = index === tabControls.length - 1 ? 0 : index + 1; + tabControls[nextIndex].focus(); + } + }); + }, + + focusOnPreviousTabControl: function (tabControls, tabControl) { + var previousIndex; + _.each(tabControls, function (element, index) { + if (element.is(tabControl)) { + previousIndex = index === 0 ? tabControls.length - 1 : index - 1; + tabControls[previousIndex].focus(); + } + }); + }, + + showViewer: function (position, annotation) { + annotation = $.makeArray(annotation); + this.annotator.showViewer(annotation, position); + this.annotator.element.find('.annotator-listing').focus(); + this.annotator.subscribe('annotationDeleted', this.focusOnGrabber); + }, + + onClose: function () { + this.focusOnHighlightedText(); + this.annotator.unsubscribe('annotationDeleted', this.focusOnGrabber); + }, + + onHighlightKeyDown: function (event) { + var KEY = $.ui.keyCode, + keyCode = event.keyCode, + target = $(event.currentTarget), + annotation, position; + + switch (keyCode) { + case KEY.TAB: + // This happens only when coming from notes page + if (this.annotator.viewer.isShown()) { + this.annotator.element.find('.annotator-listing').focus(); + event.preventDefault(); + event.stopPropagation(); + } + break; + case KEY.ENTER: + case KEY.SPACE: + if (!this.annotator.viewer.isShown()) { + position = target.position(); + this.showViewer(position, target.data('annotation')); + event.preventDefault(); + event.stopPropagation(); + } + break; + case KEY.ESCAPE: + this.annotator.viewer.hide(); + event.preventDefault(); + event.stopPropagation(); + break; + } + }, + + onViewerKeyDown: function (event) { + var KEY = $.ui.keyCode, + keyCode = event.keyCode, + target = $(event.target), + listing = this.annotator.element.find('.annotator-listing'), + tabControls; + + switch (keyCode) { + case KEY.TAB: + tabControls = this.getViewerTabControls(); + if (event.shiftKey) { // Tabbing backwards + if (target.is(listing)) { + _.last(tabControls).focus(); + } + else { + this.focusOnPreviousTabControl(tabControls, target); + } + } else { // Tabbing forward + if (target.is(listing)) { + _.first(tabControls).focus(); + } + else { + this.focusOnNextTabControl(tabControls, target); + } + } + event.preventDefault(); + event.stopPropagation(); + break; + case KEY.ENTER: + case KEY.SPACE: + if (target.hasClass('annotator-close')) { + this.onClose(); + this.annotator.viewer.hide(); + event.preventDefault(); + } + break; + case KEY.ESCAPE: + this.onClose(); + this.annotator.viewer.hide(); + event.preventDefault(); + break; + } + }, + + onEditorKeyDown: function (event) { + var KEY = $.ui.keyCode, + keyCode = event.keyCode, + target = $(event.target), + editor, form, editorControls, save, cancel, + tabControls; + + editor = this.annotator.element.find('.annotator-editor'); + form = editor.find('.annotator-widget'); + editorControls = editor.find('.annotator-controls'); + save = editorControls.find('.annotator-save'); + cancel = editorControls.find('.annotator-cancel'); + + switch (keyCode) { + case KEY.TAB: + tabControls = this.getEditorTabControls(); + if (event.shiftKey) { // Tabbing backwards + if (target.is(form)) { + _.last(tabControls).focus(); + } else { + this.focusOnPreviousTabControl(tabControls, target); + } + } else { // Tabbing forward + if (target.is(form)) { + _.first(tabControls).focus(); + } else { + this.focusOnNextTabControl(tabControls, target); + } + } + event.preventDefault(); + event.stopPropagation(); + break; + case KEY.ENTER: + if (target.is(save) || event.metaKey || event.ctrlKey) { + this.onClose(); + this.annotator.editor.submit(); + } else if (target.is(cancel)) { + this.onClose(); + this.annotator.editor.hide(); + } else { + break; + } + event.preventDefault(); + break; + case KEY.SPACE: + if (target.is(save)) { + this.onClose(); + this.annotator.editor.submit(); + } else if (target.is(cancel)) { + this.onClose(); + this.annotator.editor.hide(); + } else { + break; + } + event.preventDefault(); + break; + case KEY.ESCAPE: + this.onClose(); + this.annotator.editor.hide(); + event.preventDefault(); + break; + } + } + }); +}); +}).call(this, define || RequireJS.define); diff --git a/lms/static/js/edxnotes/plugins/caret_navigation.js b/lms/static/js/edxnotes/plugins/caret_navigation.js new file mode 100644 index 0000000000..df3dfb0175 --- /dev/null +++ b/lms/static/js/edxnotes/plugins/caret_navigation.js @@ -0,0 +1,117 @@ +;(function (define, undefined) { +'use strict'; +define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) { + /** + * The CaretNavigation Plugin which allows notes creation when users use + * caret navigation to select the text. + * Use `Ctrl + SPACE` or `Ctrl + ENTER` to open the editor. + **/ + Annotator.Plugin.CaretNavigation = function () { + // Call the Annotator.Plugin constructor this sets up the element and + // options properties. + _.bindAll(this, 'onKeyUp'); + Annotator.Plugin.apply(this, arguments); + }; + + $.extend(Annotator.Plugin.CaretNavigation.prototype, new Annotator.Plugin(), { + pluginInit: function () { + $(document).on('keyup', this.onKeyUp); + }, + + destroy: function () { + $(document).off('keyup', this.onKeyUp); + }, + + isShortcut: function (event) { + // Character ']' has keyCode 221 + return event.keyCode === 221 && event.ctrlKey && event.shiftKey; + }, + + hasSelection: function (ranges) { + return (ranges || []).length; + }, + + saveSelection: function () { + this.savedRange = Annotator.Util.getGlobal().getSelection().getRangeAt(0); + }, + + restoreSelection: function () { + if (this.savedRange) { + var browserRange = new Annotator.Range.BrowserRange(this.savedRange), + normedRange = browserRange.normalize().limit(this.annotator.wrapper[0]); + + Annotator.Util.readRangeViaSelection(normedRange); + this.savedRange = null; + } + }, + + onKeyUp: function (event) { + var annotator = this.annotator, + self = this, + isAnnotator, annotation, highlights, position, save, cancel, cleanup; + + // Do nothing if not a shortcut. + if (!this.isShortcut(event)) { + return true; + } + // Get the currently selected ranges. + annotator.selectedRanges = annotator.getSelectedRanges(); + // Do nothing if there is no selection + if (!this.hasSelection(annotator.selectedRanges)) { + return true; + } + + isAnnotator = _.some(annotator.selectedRanges, function (range) { + return annotator.isAnnotator(range.commonAncestor); + }); + + // Do nothing if we are in Annotator. + if (isAnnotator) { + return true; + } + // Show a temporary highlight so the user can see what they selected + // Also extract the quotation and serialize the ranges + annotation = annotator.setupAnnotation(annotator.createAnnotation()); + highlights = $(annotation.highlights).addClass('annotator-hl-temporary'); + + if (annotator.adder.is(':visible')) { + position = annotator.adder.position(); + annotator.adder.hide(); + } else { + position = highlights.last().position(); + } + + // Subscribe to the editor events + // Make the highlights permanent if the annotation is saved + save = function () { + cleanup(); + highlights.removeClass('annotator-hl-temporary'); + // Fire annotationCreated events so that plugins can react to them + annotator.publish('annotationCreated', [annotation]); + }; + + // Remove the highlights if the edit is cancelled + cancel = function () { + self.restoreSelection(); + cleanup(); + annotator.deleteAnnotation(annotation); + }; + + // Don't leak handlers at the end + cleanup = function () { + annotator.unsubscribe('annotationEditorHidden', cancel); + annotator.unsubscribe('annotationEditorSubmit', save); + self.savedRange = null; + }; + + annotator.subscribe('annotationEditorHidden', cancel); + annotator.subscribe('annotationEditorSubmit', save); + + this.saveSelection(); + // Display the editor. + annotator.showEditor(annotation, position); + event.preventDefault(); + } + }); +}); +}).call(this, define || RequireJS.define); diff --git a/lms/static/js/edxnotes/plugins/scroller.js b/lms/static/js/edxnotes/plugins/scroller.js index fe73cdb255..cb3da72da4 100644 --- a/lms/static/js/edxnotes/plugins/scroller.js +++ b/lms/static/js/edxnotes/plugins/scroller.js @@ -51,6 +51,8 @@ define(['jquery', 'underscore', 'annotator_1.2.9'], function ($, _, Annotator) { top: offset.top + 0.5 * highlight.height(), left: offset.left + 0.5 * highlight.width() }); + // Freeze the viewer + this.annotator.freezeAll(); // Scroll to highlight this.scrollIntoView(highlight); } diff --git a/lms/static/js/edxnotes/views/notes_factory.js b/lms/static/js/edxnotes/views/notes_factory.js index 880fcee511..8180543c78 100644 --- a/lms/static/js/edxnotes/views/notes_factory.js +++ b/lms/static/js/edxnotes/views/notes_factory.js @@ -3,9 +3,10 @@ define([ 'jquery', 'underscore', 'annotator_1.2.9', 'js/edxnotes/utils/logger', 'js/edxnotes/views/shim', 'js/edxnotes/plugins/scroller', - 'js/edxnotes/plugins/events' + 'js/edxnotes/plugins/events', 'js/edxnotes/plugins/accessibility', + 'js/edxnotes/plugins/caret_navigation' ], function ($, _, Annotator, NotesLogger) { - var plugins = ['Auth', 'Store', 'Scroller', 'Events'], + var plugins = ['Auth', 'Store', 'Scroller', 'Events', 'Accessibility', 'CaretNavigation'], getOptions, setupPlugins, updateHeaders, getAnnotator; /** diff --git a/lms/static/js/edxnotes/views/shim.js b/lms/static/js/edxnotes/views/shim.js index 3dd8a4d276..8fcdcafdc0 100644 --- a/lms/static/js/edxnotes/views/shim.js +++ b/lms/static/js/edxnotes/views/shim.js @@ -59,13 +59,17 @@ define([ }; /** - * Modifies Annotator.highlightRange to add a "tabindex=0" attribute - * to the markup that encloses the note. - * These are then focusable via the TAB key. + * Modifies Annotator.highlightRange to add "tabindex=0" and role="link" + * attributes to the markup that encloses the + * note. These are then focusable via the TAB key and are accessible to + * screen readers. **/ Annotator.prototype.highlightRange = _.compose( function (results) { - $('.annotator-hl', this.wrapper).attr('tabindex', 0); + $('.annotator-hl', this.wrapper).attr({ + 'tabindex': 0, + 'role': 'link' + }); return results; }, Annotator.prototype.highlightRange @@ -98,24 +102,37 @@ define([ ); /** - * Modifies Annotator.Viewer.html.item template to add an i18n for the - * buttons. - **/ - Annotator.Viewer.prototype.html.item = [ - '
  • ', - '', - '', - _t('View as webpage'), - '', - '', - '', - '', - '
  • ' - ].join(''); + * Modifies Annotator.Viewer.html template to make viewer div focusable. + * Also adds a close button and necessary i18n attributes to all buttons. + **/ + Annotator.Viewer.prototype.html = { + element: [ + '
    ', + '
      ', + '
      ' + ].join(''), + item: [ + '
    • ', + '', + '', + _t('View as webpage'), + '', + '', + '', + '', + '', + '
    • ' + ].join('') + }; /** * Overrides Annotator._setupViewer to add a "click" event on viewer and to @@ -134,8 +151,8 @@ define([ $(field).html(Utils.nl2br(Annotator.Util.escape(annotation.text))); } else { $(field).html('' + _t('No Comment') + ''); - self.publish('annotationViewerTextField', [field, annotation]); } + return self.publish('annotationViewerTextField', [field, annotation]); } }) .element.appendTo(this.wrapper).bind({ @@ -147,6 +164,62 @@ define([ Annotator.Editor.prototype.isShown = Annotator.Viewer.prototype.isShown; + /** + * Modifies Annotator.Editor.html template to add tabindex = -1 to + * form.annotator-widget and reverse order of Save and Cancel buttons. + **/ + Annotator.Editor.prototype.html = [ + '
      ', + '
      ', + '
        ', + '
        ', + '', + '', + '
        ', + '
        ', + '
        ' + ].join(''); + + /** + * Modifies Annotator._setupEditor to add a label for textarea#annotator-field-0. + **/ + Annotator.prototype._setupEditor = _.compose( + function () { + $('').insertBefore( + $('#annotator-field-0', this.wrapper) + ); + return this; + }, + Annotator.prototype._setupEditor + ); + + /** + * Modifies Annotator.Editor.show, in the case of a keydown event, to remove + * focus from Save button and put it on form.annotator-widget instead. + **/ + Annotator.Editor.prototype.show = _.compose( + function (event) { + if (event.type === 'keydown') { + this.element.find('.annotator-save').removeClass(this.classes.focus); + this.element.find('form.annotator-widget').focus(); + } + }, + Annotator.Editor.prototype.show + ); + + /** + * Removes the textarea keydown event handler as it triggers 'processKeypress' + * which hides the viewer on ESC and saves on ENTER. We will define different + * behaviors for these in /plugins/accessibility.js + **/ + delete Annotator.Editor.prototype.events["textarea keydown"]; + /** * Modifies Annotator.onHighlightMouseover to avoid showing the viewer if the * editor is opened. @@ -174,8 +247,6 @@ define([ Annotator.prototype._setupWrapper ); - Annotator.Editor.prototype.isShown = Annotator.Viewer.prototype.isShown; - $.extend(true, Annotator.prototype, { isFrozen: false, uid: _.uniqueId(), @@ -191,11 +262,15 @@ define([ }, onNoteClick: function (event) { + var target = $(event.target); event.stopPropagation(); Annotator.Util.preventEventDefault(event); - if (!$(event.target).is('.annotator-delete')) { + + if (!(target.is('.annotator-delete') || target.is('.annotator-close'))) { Annotator.frozenSrc = this; this.freezeAll(); + } else if (target.is('.annotator-close')) { + this.viewer.hide(); } }, diff --git a/lms/static/js/edxnotes/views/toggle_notes_factory.js b/lms/static/js/edxnotes/views/toggle_notes_factory.js index 5739439a6b..7a37788dd2 100644 --- a/lms/static/js/edxnotes/views/toggle_notes_factory.js +++ b/lms/static/js/edxnotes/views/toggle_notes_factory.js @@ -12,7 +12,7 @@ define([ errorMessage: gettext("An error has occurred. Make sure that you are connected to the Internet, and then try refreshing the page."), initialize: function (options) { - _.bindAll(this, 'onSuccess', 'onError'); + _.bindAll(this, 'onSuccess', 'onError', 'keyDownToggleHandler'); this.visibility = options.visibility; this.visibilityUrl = options.visibilityUrl; this.label = this.$('.utility-control-label'); @@ -20,6 +20,12 @@ define([ this.actionLink.removeClass('is-disabled'); this.actionToggleMessage = this.$('.action-toggle-message'); this.notification = new Annotator.Notification(); + $(document).on('keydown.edxnotes:togglenotes', this.keyDownToggleHandler); + }, + + remove: function() { + $(document).off('keydown.edxnotes:togglenotes'); + Backbone.View.prototype.remove.call(this); }, toggleHandler: function (event) { @@ -29,6 +35,13 @@ define([ this.toggleNotes(this.visibility); }, + keyDownToggleHandler: function (event) { + // Character '[' has keyCode 219 + if (event.keyCode === 219 && event.ctrlKey && event.shiftKey) { + this.toggleHandler(event); + } + }, + toggleNotes: function (visibility) { if (visibility) { this.enableNotes(); @@ -47,16 +60,16 @@ define([ enableNotes: function () { _.each($('.edx-notes-wrapper'), EdxnotesVisibilityDecorator.enableNote); - this.actionLink.addClass('is-active').attr('aria-pressed', true); + this.actionLink.addClass('is-active'); this.label.text(gettext('Hide notes')); - this.actionToggleMessage.text(gettext('Showing notes')); + this.actionToggleMessage.text(gettext('Notes visible')); }, disableNotes: function () { EdxnotesVisibilityDecorator.disableNotes(); - this.actionLink.removeClass('is-active').attr('aria-pressed', false); + this.actionLink.removeClass('is-active'); this.label.text(gettext('Show notes')); - this.actionToggleMessage.text(gettext('Hiding notes')); + this.actionToggleMessage.text(gettext('Notes hidden')); }, hideErrorMessage: function() { diff --git a/lms/static/js/fixtures/edxnotes/toggle_notes.html b/lms/static/js/fixtures/edxnotes/toggle_notes.html index 7b1d2775a9..7aa88bc965 100644 --- a/lms/static/js/fixtures/edxnotes/toggle_notes.html +++ b/lms/static/js/fixtures/edxnotes/toggle_notes.html @@ -1,5 +1,5 @@
        - Hiding notes + Notes visible
        -
        + diff --git a/lms/templates/dashboard/_dashboard_certificate_information.html b/lms/templates/dashboard/_dashboard_certificate_information.html index 109136e9eb..676e4b91fd 100644 --- a/lms/templates/dashboard/_dashboard_certificate_information.html +++ b/lms/templates/dashboard/_dashboard_certificate_information.html @@ -1,6 +1,7 @@ <%page args="cert_status, course, enrollment" /> <%! from django.utils.translation import ugettext as _ %> +<%namespace name='static' file='../static_content.html'/> <% cert_name_short = course.cert_name_short @@ -25,61 +26,76 @@ else:
        % if cert_status['status'] == 'processing': -

        ${_("Final course details are being wrapped up at this time. Your final standing will be available shortly.")}

        +

        ${_("Final course details are being wrapped up at this time. Your final standing will be available shortly.")}

        % elif cert_status['status'] in ('generating', 'ready', 'notpassing', 'restricted'): -

        ${_("Your final grade:")} - ${"{0:.0f}%".format(float(cert_status['grade'])*100)}. - % if cert_status['status'] == 'notpassing' and enrollment.mode != 'audit': - ${_("Grade required for a {cert_name_short}:").format(cert_name_short=cert_name_short)} - ${"{0:.0f}%".format(float(course.lowest_passing_grade)*100)}. - % elif cert_status['status'] == 'restricted' and enrollment.mode == 'verified': -

        - ${_("Your verified {cert_name_long} is being held pending confirmation that the issuance of your {cert_name_short} is in compliance with strict U.S. embargoes on Iran, Cuba, Syria and Sudan. If you think our system has mistakenly identified you as being connected with one of those countries, please let us know by contacting {email}. If you would like a refund on your {cert_name_long}, please contact our billing address {billing_email}").format(email='{email}.'.format(email=settings.CONTACT_EMAIL), billing_email='{email}'.format(email=settings.PAYMENT_SUPPORT_EMAIL), cert_name_short=cert_name_short, cert_name_long=cert_name_long)} -

        - % elif cert_status['status'] == 'restricted': -

        - ${_("Your {cert_name_long} is being held pending confirmation that the issuance of your {cert_name_short} is in compliance with strict U.S. embargoes on Iran, Cuba, Syria and Sudan. If you think our system has mistakenly identified you as being connected with one of those countries, please let us know by contacting {email}.").format(email='{email}.'.format(email=settings.CONTACT_EMAIL), cert_name_short=cert_name_short, cert_name_long=cert_name_long)} -

        - % endif -

        +

        ${_("Your final grade:")} + ${"{0:.0f}%".format(float(cert_status['grade'])*100)}. + % if cert_status['status'] == 'notpassing' and enrollment.mode != 'audit': + ${_("Grade required for a {cert_name_short}:").format(cert_name_short=cert_name_short)} + ${"{0:.0f}%".format(float(course.lowest_passing_grade)*100)}. + % elif cert_status['status'] == 'restricted' and enrollment.mode == 'verified': +

        + ${_("Your verified {cert_name_long} is being held pending confirmation that the issuance of your {cert_name_short} is in compliance with strict U.S. embargoes on Iran, Cuba, Syria and Sudan. If you think our system has mistakenly identified you as being connected with one of those countries, please let us know by contacting {email}. If you would like a refund on your {cert_name_long}, please contact our billing address {billing_email}").format(email='{email}.'.format(email=settings.CONTACT_EMAIL), billing_email='{email}'.format(email=settings.PAYMENT_SUPPORT_EMAIL), cert_name_short=cert_name_short, cert_name_long=cert_name_long)} +

        + % elif cert_status['status'] == 'restricted': +

        + ${_("Your {cert_name_long} is being held pending confirmation that the issuance of your {cert_name_short} is in compliance with strict U.S. embargoes on Iran, Cuba, Syria and Sudan. If you think our system has mistakenly identified you as being connected with one of those countries, please let us know by contacting {email}.").format(email='{email}.'.format(email=settings.CONTACT_EMAIL), cert_name_short=cert_name_short, cert_name_long=cert_name_long)} +

        + % endif +

        % endif % if cert_status['show_disabled_download_button'] or cert_status['show_download_url'] or cert_status['show_survey_button']: -
        diff --git a/lms/templates/dashboard/_dashboard_course_listing.html b/lms/templates/dashboard/_dashboard_course_listing.html index 6a20a1e2e3..697212378f 100644 --- a/lms/templates/dashboard/_dashboard_course_listing.html +++ b/lms/templates/dashboard/_dashboard_course_listing.html @@ -136,7 +136,7 @@ from student.helpers import ( % endif % if verification_status.get('status') in [VERIFY_STATUS_NEED_TO_VERIFY, VERIFY_STATUS_SUBMITTED, VERIFY_STATUS_APPROVED, VERIFY_STATUS_NEED_TO_REVERIFY] and not is_course_blocked: -
        +
        % if verification_status['status'] == VERIFY_STATUS_NEED_TO_VERIFY:
        % if verification_status['days_until_deadline'] is not None: diff --git a/lms/templates/edxnotes/toggle_notes.html b/lms/templates/edxnotes/toggle_notes.html index e50c6550e8..449a757c5f 100644 --- a/lms/templates/edxnotes/toggle_notes.html +++ b/lms/templates/edxnotes/toggle_notes.html @@ -9,7 +9,7 @@ %>
        - + <% if ( context.providers.length > 0 && !context.currentProvider ) { %>